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: prefixed writer no longer includes prefix length in bytes written #6032

Merged
merged 1 commit into from Sep 26, 2023

Conversation

chris-olszewski
Copy link
Contributor

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

Description

When hooking up the prefixed writer as part of task graph execution I encountered:

[0 olszewski@chriss-mbp] /tmp/pnpm-test $ turbo_dev build --experimental-rust-codepath
docs:build: next build
web:build: next build
docs:build:
thread 'tokio-runtime-worker' panicked at /rustc/3223b0b5e8dadda3f76c3fd1a8d6c5addc09599e/library/std/src/io/mod.rs:1581:36:
range start index 22 out of range for slice of length 1
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
web:build:
thread 'tokio-runtime-worker' panicked at /rustc/3223b0b5e8dadda3f76c3fd1a8d6c5addc09599e/library/std/src/io/mod.rs:1581:36:
range start index 21 out of range for slice of length 1
thread 'main' panicked at crates/turborepo-lib/src/task_graph/visitor.rs:259:20:
task executor panicked: JoinError::Panic(Id(28), ...)

After a bit of digging, I found that this was caused by us violating part of the Write trait, specifically our write return value:

If the return value is Ok(n) then n must satisfy n <= buf.len()

Where we would return prefix.len() + buf.len() which upstream would cause and index out of bounds panic.

This PR:

  • Now returns buf.len() in write so we return values that callers expect
  • Refactor PrefixedWriter to eagerly apply the styled writer instead of applying it on every write call.

Testing Instructions

Added quick unit tests. Real test for the panic fix is use in the process manager hookup PR: https://github.com/vercel/turbo/tree/olszewski/hook_up_process_manager

Closes TURBO-1363

@vercel
Copy link

vercel bot commented Sep 26, 2023

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

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

Copy link
Contributor Author

@chris-olszewski chris-olszewski left a comment

Choose a reason for hiding this comment

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

Reviewer's Guide

pub fn new(ui: UI, prefix: StyledObject<String>, writer: W) -> Self {
Self { ui, prefix, writer }
pub fn new(ui: UI, prefix: StyledObject<impl Display>, writer: W) -> Self {
let prefix = ui.apply(prefix).to_string();
Copy link
Contributor Author

Choose a reason for hiding this comment

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

We offer no way to alter the state of ui after the PrefixedWriter is constructed so we can eagerly apply the ansi stripping at construction and store the result.

let prefix = self.prefix.clone();
let prefix = self.ui.apply(prefix);
let prefix_bytes_written = self.writer.write(prefix.to_string().as_bytes())?;
self.writer.write_all(self.prefix.as_bytes())?;
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Switched to write_all since we weren't checking if all bytes got written to the underlying writer.

// We do end up writing more bytes than this to the underlying writer, but we
// cannot report this to the callers as the amount of bytes we report
// written must be less than or equal to the number of bytes in the buffer.
self.writer.write(buf)
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This is the bug fix

@chris-olszewski chris-olszewski marked this pull request as ready for review September 26, 2023 15:41
@chris-olszewski chris-olszewski requested a review from a team as a code owner September 26, 2023 15:41
@github-actions
Copy link
Contributor

github-actions bot commented Sep 26, 2023

🟢 CI successful 🟢

Thanks

@chris-olszewski chris-olszewski changed the title fix: prefixed writer to no longer cause panic upstream fix: prefixed writer no longer includes prefix length in bytes written Sep 26, 2023
Copy link
Contributor

@NicholasLYang NicholasLYang left a comment

Choose a reason for hiding this comment

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

Ah yeah I think I ran into a similar issue. Having PrefixedWriter implement Write may not end up being the best abstraction for this reason

@chris-olszewski
Copy link
Contributor Author

Ah yeah I think I ran into a similar issue. Having PrefixedWriter implement Write may not end up being the best abstraction for this reason

Yeah, for most cases I think we're fine unless we wrap this in something that continues to try to write even when a full write doesn't happen. In that case I think the worst that would happen is we end up with additional prefixes interspersed with the actual logs.

@chris-olszewski chris-olszewski merged commit 24d10b0 into main Sep 26, 2023
58 checks passed
@chris-olszewski chris-olszewski deleted the olszewski/fix_prefixed_writer branch September 26, 2023 19:42
Zertsov pushed a commit that referenced this pull request Sep 27, 2023
#6032)

### Description

When hooking up the prefixed writer as part of task graph execution I
encountered:
```
[0 olszewski@chriss-mbp] /tmp/pnpm-test $ turbo_dev build --experimental-rust-codepath
docs:build: next build
web:build: next build
docs:build:
thread 'tokio-runtime-worker' panicked at /rustc/3223b0b5e8dadda3f76c3fd1a8d6c5addc09599e/library/std/src/io/mod.rs:1581:36:
range start index 22 out of range for slice of length 1
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
web:build:
thread 'tokio-runtime-worker' panicked at /rustc/3223b0b5e8dadda3f76c3fd1a8d6c5addc09599e/library/std/src/io/mod.rs:1581:36:
range start index 21 out of range for slice of length 1
thread 'main' panicked at crates/turborepo-lib/src/task_graph/visitor.rs:259:20:
task executor panicked: JoinError::Panic(Id(28), ...)
```

After a bit of digging, I found that this was caused by us violating
part of the `Write` trait, specifically our `write` return value:
> If the return value is Ok(n) then n must satisfy n <= buf.len()

Where we would return `prefix.len() + buf.len()` which upstream would
cause and index out of bounds panic.

This PR:
- Now returns `buf.len()` in `write` so we return values that callers
expect
- Refactor `PrefixedWriter` to eagerly apply the styled writer instead
of applying it on every write call.

### Testing Instructions

Added quick unit tests. Real test for the panic fix is use in the
process manager hookup PR:
https://github.com/vercel/turbo/tree/olszewski/hook_up_process_manager


Closes TURBO-1363

Co-authored-by: Chris Olszewski <Chris Olszewski>
kodiakhq bot pushed a commit to X-oss-byte/Nextjs that referenced this pull request Oct 5, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

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

---

### Release Notes

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

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

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



#### What's Changed

##### Changelog

-   release(turborepo): 1.10.14 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5963
-   Quiet a (mostly unaddressable) Sentry error by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5974
-   feat(turbopack): emit raw image bytes for unsupported codec by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [vercel/turbo#5967
-   sync deps by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5975
-   feat(create-turbo): support package manager opt by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5979
-   fix:(create-turbo) Review changes for package manager flag. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5980
-   fix(Turborepo): Add typescript peer dep as dev dep by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5985
-   fix(turborepo): Run outline fixes by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5966
-   fix(turborepo): Make shim do complete package manager detection. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5986
-   Link to Next.js issue link for Turbopack issues by [@&#8203;padmaia](https://togithub.com/padmaia) in [vercel/turbo#5991
-   add progress and top self time to convert trace tool by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5993
-   fix: make `OutputWriter` references `Send` by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5931
-   Add "toggleButton" to sidebar by [@&#8203;mitesh-gupta](https://togithub.com/mitesh-gupta) in [vercel/turbo#5968
-   fix(turbopack-ecmascript): make free var replacements (compile time defines) work for member expressions and allow JSON values by [@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in [vercel/turbo#6000
-   Allow task log prefixing in Github Actions by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#5994
-   libwebp-sys: 0.9.2 -> 0.9.3 by [@&#8203;LeSuisse](https://togithub.com/LeSuisse) in [vercel/turbo#5965
-   fix: add a hack to prevent flaky test from blocking others by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6006
-   Signal when signal handler is registered by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6010
-   release(turborepo): 1.10.15-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6007
-   Output logs docs update by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6005
-   chore: remove silent flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6008
-   fix: allow multiple threads to share hash tracker by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6012
-   fix(docs): add nextjs 11 link by [@&#8203;ragingwind](https://togithub.com/ragingwind) in [vercel/turbo#5978
-   chore: remove anyhow from task cache by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6013
-   Fix typo in showcase.mdx by [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) in [vercel/turbo#6014
-   feature(turborepo): Port Run Summary by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5833
-   fix(Turborepo): Pidlock owner now returns Result by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6025
-   chore: quiet warnings on turborepo build by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6033
-   feat(prune): add ability to specify scopes via argument instead of flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6022
-   feat: add method for piping child output to writer by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6031
-   fix: prefixed writer no longer includes prefix length in bytes written by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6032
-   feat(turborepo-auth): create new crate to handle authentication to backend by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6027
-   feat(Turborepo): Enable rust daemon by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5964
-   feat(turborepo-auth): move sso_login implementation to new crate by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6037
-   release(turborepo): 1.10.15-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6042
-   fix: Run outline bugs by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6041
-   Turbopack: add support for an asset prefix (and basePath in Next.js) by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [vercel/turbo#6036
-   Revert "Turbopack: add support for an asset prefix (and basePath in N… by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6044
-   refactor TaskScopes to use an aggregation tree by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5992
-   feat(turbo-ignore) add a --max-buffer option for dry runs that have large outputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6052
-   Tracing improvements by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6050
-   fix: add new test so we have test coverage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6056
-   Revert "Revert "Turbopack: add support for an asset prefix (and basePath in N… ([#&#8203;6044](https://togithub.com/vercel/turbo/issues/6044))" by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [vercel/turbo#6049
-   release(turborepo): 1.10.15-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6059
-   Performance Improvements (1) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6051
-   Performance Improvements (2) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6053
-   Performance Improvements (4) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6055
-   Update `swc_core` to `v0.83.28` by [@&#8203;kdy1](https://togithub.com/kdy1) in [vercel/turbo#6003
-   add hash() to FileContent by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6062
-   Handle errors from file hashing by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6060
-   feat(turborepo-auth): move logout function to crate by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6057
-   fix(lockfiles) no longer error when parsing out of date pnpm lockfiles by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6048
-   refactor(Turborepo): Extract LocalTurboState from RepoState by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6070
-   Performance Improvements (1+2) review follow-up by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6061
-   Performance improvements (3) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6045
-   feat: hook up process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6043
-   Add crate, move package json by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6077
-   fix: Link test race condition by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6081
-   fix: convert the lockfile path to a repo-root-relative path before use by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#5958
-   fix(turborepo): Unhide flags by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6021
-   feat: add task cache save by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6071
-   fix(Turborepo): copy yarn berry config files when running `turbo prune` by [@&#8203;artberri](https://togithub.com/artberri) in [vercel/turbo#6073
-   chore: Added logging for filter code by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6087
-   fix(turborepo): Don't recursively invoke self. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6091
-   fix(turborepo): Process single-package independently. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6086
-   fix(turbo-ignore): Quote the filter argument. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6096
-   release(turborepo): 1.10.15-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6097
-   feature(turborepo): Go Hashing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5851
-   Revert "feature(turborepo): Go Hashing ([#&#8203;5851](https://togithub.com/vercel/turbo/issues/5851))" by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6101
-   Set --single-package everywhere we can. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6102

#### New Contributors

-   [@&#8203;Zertsov](https://togithub.com/Zertsov) made their first contribution in [vercel/turbo#5994
-   [@&#8203;ragingwind](https://togithub.com/ragingwind) made their first contribution in [vercel/turbo#5978
-   [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) made their first contribution in [vercel/turbo#6014
-   [@&#8203;artberri](https://togithub.com/artberri) made their first contribution in [vercel/turbo#6073

**Full Changelog**: vercel/turbo@v1.10.14...v1.10.15

</details>

---

### Configuration

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

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

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

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

---

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

---

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

This PR contains the following updates:

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

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.14 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5963
- Quiet a (mostly unaddressable) Sentry error by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5974
- feat(turbopack): emit raw image bytes for unsupported codec by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[vercel/turbo#5967
- sync deps by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5975
- feat(create-turbo): support package manager opt by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5979
- fix:(create-turbo) Review changes for package manager flag. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5980
- fix(Turborepo): Add typescript peer dep as dev dep by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5985
- fix(turborepo): Run outline fixes by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5966
- fix(turborepo): Make shim do complete package manager detection. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5986
- Link to Next.js issue link for Turbopack issues by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[vercel/turbo#5991
- add progress and top self time to convert trace tool by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5993
- fix: make `OutputWriter` references `Send` by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5931
- Add "toggleButton" to sidebar by
[@&#8203;mitesh-gupta](https://togithub.com/mitesh-gupta) in
[vercel/turbo#5968
- fix(turbopack-ecmascript): make free var replacements (compile time
defines) work for member expressions and allow JSON values by
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in
[vercel/turbo#6000
- Allow task log prefixing in Github Actions by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#5994
- libwebp-sys: 0.9.2 -> 0.9.3 by
[@&#8203;LeSuisse](https://togithub.com/LeSuisse) in
[vercel/turbo#5965
- fix: add a hack to prevent flaky test from blocking others by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6006
- Signal when signal handler is registered by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6010
- release(turborepo): 1.10.15-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6007
- Output logs docs update by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6005
- chore: remove silent flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6008
- fix: allow multiple threads to share hash tracker by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6012
- fix(docs): add nextjs 11 link by
[@&#8203;ragingwind](https://togithub.com/ragingwind) in
[vercel/turbo#5978
- chore: remove anyhow from task cache by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6013
- Fix typo in showcase.mdx by
[@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) in
[vercel/turbo#6014
- feature(turborepo): Port Run Summary by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5833
- fix(Turborepo): Pidlock owner now returns Result by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6025
- chore: quiet warnings on turborepo build by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6033
- feat(prune): add ability to specify scopes via argument instead of
flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski)
in
[vercel/turbo#6022
- feat: add method for piping child output to writer by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6031
- fix: prefixed writer no longer includes prefix length in bytes written
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6032
- feat(turborepo-auth): create new crate to handle authentication to
backend by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6027
- feat(Turborepo): Enable rust daemon by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5964
- feat(turborepo-auth): move sso_login implementation to new crate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6037
- release(turborepo): 1.10.15-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6042
- fix: Run outline bugs by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6041
- Turbopack: add support for an asset prefix (and basePath in Next.js)
by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[vercel/turbo#6036
- Revert "Turbopack: add support for an asset prefix (and basePath in N…
by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6044
- refactor TaskScopes to use an aggregation tree by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5992
- feat(turbo-ignore) add a --max-buffer option for dry runs that have
large outputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6052
- Tracing improvements by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6050
- fix: add new test so we have test coverage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6056
- Revert "Revert "Turbopack: add support for an asset prefix (and
basePath in N…
([#&#8203;6044](https://togithub.com/vercel/turbo/issues/6044))" by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[vercel/turbo#6049
- release(turborepo): 1.10.15-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6059
- Performance Improvements (1) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6051
- Performance Improvements (2) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6053
- Performance Improvements (4) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6055
- Update `swc_core` to `v0.83.28` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[vercel/turbo#6003
- add hash() to FileContent by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6062
- Handle errors from file hashing by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6060
- feat(turborepo-auth): move logout function to crate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6057
- fix(lockfiles) no longer error when parsing out of date pnpm lockfiles
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6048
- refactor(Turborepo): Extract LocalTurboState from RepoState by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6070
- Performance Improvements (1+2) review follow-up by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6061
- Performance improvements (3) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6045
- feat: hook up process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6043
- Add crate, move package json by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6077
- fix: Link test race condition by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6081
- fix: convert the lockfile path to a repo-root-relative path before use
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5958
- fix(turborepo): Unhide flags by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6021
- feat: add task cache save by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6071
- fix(Turborepo): copy yarn berry config files when running `turbo
prune` by [@&#8203;artberri](https://togithub.com/artberri) in
[vercel/turbo#6073
- chore: Added logging for filter code by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6087
- fix(turborepo): Don't recursively invoke self. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6091
- fix(turborepo): Process single-package independently. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6086
- fix(turbo-ignore): Quote the filter argument. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6096
- release(turborepo): 1.10.15-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6097
- feature(turborepo): Go Hashing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5851
- Revert "feature(turborepo): Go Hashing
([#&#8203;5851](https://togithub.com/vercel/turbo/issues/5851))" by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6101
- Set --single-package everywhere we can. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6102

#### New Contributors

- [@&#8203;Zertsov](https://togithub.com/Zertsov) made their first
contribution in
[vercel/turbo#5994
- [@&#8203;ragingwind](https://togithub.com/ragingwind) made their first
contribution in
[vercel/turbo#5978
- [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) made their
first contribution in
[vercel/turbo#6014
- [@&#8203;artberri](https://togithub.com/artberri) made their first
contribution in
[vercel/turbo#6073

**Full Changelog**:
vercel/turbo@v1.10.14...v1.10.15

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot pushed a commit to timelessco/js-bottomsheet that referenced this pull request Oct 5, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`^1.10.14` -> `^1.10.15`](https://renovatebot.com/diffs/npm/turbo/1.10.14/1.10.15) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.14/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.14/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [vite](https://togithub.com/vitejs/vite/tree/main/#readme) ([source](https://togithub.com/vitejs/vite)) | [`^4.4.10` -> `^4.4.11`](https://renovatebot.com/diffs/npm/vite/4.4.10/4.4.11) | [![age](https://developer.mend.io/api/mc/badges/age/npm/vite/4.4.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vite/4.4.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vite/4.4.10/4.4.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vite/4.4.10/4.4.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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



#### What's Changed

##### Changelog

-   release(turborepo): 1.10.14 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5963
-   Quiet a (mostly unaddressable) Sentry error by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5974
-   feat(turbopack): emit raw image bytes for unsupported codec by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [vercel/turbo#5967
-   sync deps by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5975
-   feat(create-turbo): support package manager opt by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5979
-   fix:(create-turbo) Review changes for package manager flag. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5980
-   fix(Turborepo): Add typescript peer dep as dev dep by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5985
-   fix(turborepo): Run outline fixes by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5966
-   fix(turborepo): Make shim do complete package manager detection. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5986
-   Link to Next.js issue link for Turbopack issues by [@&#8203;padmaia](https://togithub.com/padmaia) in [vercel/turbo#5991
-   add progress and top self time to convert trace tool by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5993
-   fix: make `OutputWriter` references `Send` by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5931
-   Add "toggleButton" to sidebar by [@&#8203;mitesh-gupta](https://togithub.com/mitesh-gupta) in [vercel/turbo#5968
-   fix(turbopack-ecmascript): make free var replacements (compile time defines) work for member expressions and allow JSON values by [@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in [vercel/turbo#6000
-   Allow task log prefixing in Github Actions by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#5994
-   libwebp-sys: 0.9.2 -> 0.9.3 by [@&#8203;LeSuisse](https://togithub.com/LeSuisse) in [vercel/turbo#5965
-   fix: add a hack to prevent flaky test from blocking others by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6006
-   Signal when signal handler is registered by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6010
-   release(turborepo): 1.10.15-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6007
-   Output logs docs update by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6005
-   chore: remove silent flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6008
-   fix: allow multiple threads to share hash tracker by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6012
-   fix(docs): add nextjs 11 link by [@&#8203;ragingwind](https://togithub.com/ragingwind) in [vercel/turbo#5978
-   chore: remove anyhow from task cache by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6013
-   Fix typo in showcase.mdx by [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) in [vercel/turbo#6014
-   feature(turborepo): Port Run Summary by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5833
-   fix(Turborepo): Pidlock owner now returns Result by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6025
-   chore: quiet warnings on turborepo build by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6033
-   feat(prune): add ability to specify scopes via argument instead of flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6022
-   feat: add method for piping child output to writer by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6031
-   fix: prefixed writer no longer includes prefix length in bytes written by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6032
-   feat(turborepo-auth): create new crate to handle authentication to backend by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6027
-   feat(Turborepo): Enable rust daemon by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5964
-   feat(turborepo-auth): move sso_login implementation to new crate by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6037
-   release(turborepo): 1.10.15-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6042
-   fix: Run outline bugs by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6041
-   Turbopack: add support for an asset prefix (and basePath in Next.js) by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [vercel/turbo#6036
-   Revert "Turbopack: add support for an asset prefix (and basePath in N… by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6044
-   refactor TaskScopes to use an aggregation tree by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5992
-   feat(turbo-ignore) add a --max-buffer option for dry runs that have large outputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6052
-   Tracing improvements by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6050
-   fix: add new test so we have test coverage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6056
-   Revert "Revert "Turbopack: add support for an asset prefix (and basePath in N… ([#&#8203;6044](https://togithub.com/vercel/turbo/issues/6044))" by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [vercel/turbo#6049
-   release(turborepo): 1.10.15-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6059
-   Performance Improvements (1) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6051
-   Performance Improvements (2) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6053
-   Performance Improvements (4) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6055
-   Update `swc_core` to `v0.83.28` by [@&#8203;kdy1](https://togithub.com/kdy1) in [vercel/turbo#6003
-   add hash() to FileContent by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6062
-   Handle errors from file hashing by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6060
-   feat(turborepo-auth): move logout function to crate by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6057
-   fix(lockfiles) no longer error when parsing out of date pnpm lockfiles by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6048
-   refactor(Turborepo): Extract LocalTurboState from RepoState by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6070
-   Performance Improvements (1+2) review follow-up by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6061
-   Performance improvements (3) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6045
-   feat: hook up process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6043
-   Add crate, move package json by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6077
-   fix: Link test race condition by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6081
-   fix: convert the lockfile path to a repo-root-relative path before use by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#5958
-   fix(turborepo): Unhide flags by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6021
-   feat: add task cache save by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6071
-   fix(Turborepo): copy yarn berry config files when running `turbo prune` by [@&#8203;artberri](https://togithub.com/artberri) in [vercel/turbo#6073
-   chore: Added logging for filter code by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6087
-   fix(turborepo): Don't recursively invoke self. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6091
-   fix(turborepo): Process single-package independently. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6086
-   fix(turbo-ignore): Quote the filter argument. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6096
-   release(turborepo): 1.10.15-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6097
-   feature(turborepo): Go Hashing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5851
-   Revert "feature(turborepo): Go Hashing ([#&#8203;5851](https://togithub.com/vercel/turbo/issues/5851))" by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6101
-   Set --single-package everywhere we can. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6102

#### New Contributors

-   [@&#8203;Zertsov](https://togithub.com/Zertsov) made their first contribution in [vercel/turbo#5994
-   [@&#8203;ragingwind](https://togithub.com/ragingwind) made their first contribution in [vercel/turbo#5978
-   [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) made their first contribution in [vercel/turbo#6014
-   [@&#8203;artberri](https://togithub.com/artberri) made their first contribution in [vercel/turbo#6073

**Full Changelog**: vercel/turbo@v1.10.14...v1.10.15

</details>

<details>
<summary>vitejs/vite (vite)</summary>

### [`v4.4.11`](https://togithub.com/vitejs/vite/releases/tag/v4.4.11)

[Compare Source](https://togithub.com/vitejs/vite/compare/v4.4.10...v4.4.11)

Please refer to [CHANGELOG.md](https://togithub.com/vitejs/vite/blob/v4.4.11/packages/vite/CHANGELOG.md) for details.

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

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

---

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

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/timelessco/js-bottomsheet).
renovate bot added a commit to Asjas/platform that referenced this pull request Oct 5, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

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

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.14 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5963
- Quiet a (mostly unaddressable) Sentry error by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5974
- feat(turbopack): emit raw image bytes for unsupported codec by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[vercel/turbo#5967
- sync deps by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5975
- feat(create-turbo): support package manager opt by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5979
- fix:(create-turbo) Review changes for package manager flag. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5980
- fix(Turborepo): Add typescript peer dep as dev dep by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5985
- fix(turborepo): Run outline fixes by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5966
- fix(turborepo): Make shim do complete package manager detection. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5986
- Link to Next.js issue link for Turbopack issues by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[vercel/turbo#5991
- add progress and top self time to convert trace tool by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5993
- fix: make `OutputWriter` references `Send` by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5931
- Add "toggleButton" to sidebar by
[@&#8203;mitesh-gupta](https://togithub.com/mitesh-gupta) in
[vercel/turbo#5968
- fix(turbopack-ecmascript): make free var replacements (compile time
defines) work for member expressions and allow JSON values by
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in
[vercel/turbo#6000
- Allow task log prefixing in Github Actions by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#5994
- libwebp-sys: 0.9.2 -> 0.9.3 by
[@&#8203;LeSuisse](https://togithub.com/LeSuisse) in
[vercel/turbo#5965
- fix: add a hack to prevent flaky test from blocking others by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6006
- Signal when signal handler is registered by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6010
- release(turborepo): 1.10.15-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6007
- Output logs docs update by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6005
- chore: remove silent flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6008
- fix: allow multiple threads to share hash tracker by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6012
- fix(docs): add nextjs 11 link by
[@&#8203;ragingwind](https://togithub.com/ragingwind) in
[vercel/turbo#5978
- chore: remove anyhow from task cache by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6013
- Fix typo in showcase.mdx by
[@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) in
[vercel/turbo#6014
- feature(turborepo): Port Run Summary by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5833
- fix(Turborepo): Pidlock owner now returns Result by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6025
- chore: quiet warnings on turborepo build by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6033
- feat(prune): add ability to specify scopes via argument instead of
flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski)
in
[vercel/turbo#6022
- feat: add method for piping child output to writer by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6031
- fix: prefixed writer no longer includes prefix length in bytes written
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6032
- feat(turborepo-auth): create new crate to handle authentication to
backend by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6027
- feat(Turborepo): Enable rust daemon by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5964
- feat(turborepo-auth): move sso_login implementation to new crate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6037
- release(turborepo): 1.10.15-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6042
- fix: Run outline bugs by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6041
- Turbopack: add support for an asset prefix (and basePath in Next.js)
by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[vercel/turbo#6036
- Revert "Turbopack: add support for an asset prefix (and basePath in N…
by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6044
- refactor TaskScopes to use an aggregation tree by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5992
- feat(turbo-ignore) add a --max-buffer option for dry runs that have
large outputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6052
- Tracing improvements by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6050
- fix: add new test so we have test coverage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6056
- Revert "Revert "Turbopack: add support for an asset prefix (and
basePath in N…
([#&#8203;6044](https://togithub.com/vercel/turbo/issues/6044))" by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[vercel/turbo#6049
- release(turborepo): 1.10.15-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6059
- Performance Improvements (1) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6051
- Performance Improvements (2) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6053
- Performance Improvements (4) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6055
- Update `swc_core` to `v0.83.28` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[vercel/turbo#6003
- add hash() to FileContent by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6062
- Handle errors from file hashing by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6060
- feat(turborepo-auth): move logout function to crate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6057
- fix(lockfiles) no longer error when parsing out of date pnpm lockfiles
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6048
- refactor(Turborepo): Extract LocalTurboState from RepoState by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6070
- Performance Improvements (1+2) review follow-up by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6061
- Performance improvements (3) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6045
- feat: hook up process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6043
- Add crate, move package json by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6077
- fix: Link test race condition by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6081
- fix: convert the lockfile path to a repo-root-relative path before use
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5958
- fix(turborepo): Unhide flags by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6021
- feat: add task cache save by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6071
- fix(Turborepo): copy yarn berry config files when running `turbo
prune` by [@&#8203;artberri](https://togithub.com/artberri) in
[vercel/turbo#6073
- chore: Added logging for filter code by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6087
- fix(turborepo): Don't recursively invoke self. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6091
- fix(turborepo): Process single-package independently. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6086
- fix(turbo-ignore): Quote the filter argument. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6096
- release(turborepo): 1.10.15-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6097
- feature(turborepo): Go Hashing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5851
- Revert "feature(turborepo): Go Hashing
([#&#8203;5851](https://togithub.com/vercel/turbo/issues/5851))" by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6101
- Set --single-package everywhere we can. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6102

#### New Contributors

- [@&#8203;Zertsov](https://togithub.com/Zertsov) made their first
contribution in
[vercel/turbo#5994
- [@&#8203;ragingwind](https://togithub.com/ragingwind) made their first
contribution in
[vercel/turbo#5978
- [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) made their
first contribution in
[vercel/turbo#6014
- [@&#8203;artberri](https://togithub.com/artberri) made their first
contribution in
[vercel/turbo#6073

**Full Changelog**:
vercel/turbo@v1.10.14...v1.10.15

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

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

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 Oct 5, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

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

---

### Release Notes

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

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

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



#### What's Changed

##### Changelog

-   release(turborepo): 1.10.14 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5963
-   Quiet a (mostly unaddressable) Sentry error by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5974
-   feat(turbopack): emit raw image bytes for unsupported codec by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [vercel/turbo#5967
-   sync deps by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5975
-   feat(create-turbo): support package manager opt by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5979
-   fix:(create-turbo) Review changes for package manager flag. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5980
-   fix(Turborepo): Add typescript peer dep as dev dep by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5985
-   fix(turborepo): Run outline fixes by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5966
-   fix(turborepo): Make shim do complete package manager detection. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5986
-   Link to Next.js issue link for Turbopack issues by [@&#8203;padmaia](https://togithub.com/padmaia) in [vercel/turbo#5991
-   add progress and top self time to convert trace tool by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5993
-   fix: make `OutputWriter` references `Send` by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5931
-   Add "toggleButton" to sidebar by [@&#8203;mitesh-gupta](https://togithub.com/mitesh-gupta) in [vercel/turbo#5968
-   fix(turbopack-ecmascript): make free var replacements (compile time defines) work for member expressions and allow JSON values by [@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in [vercel/turbo#6000
-   Allow task log prefixing in Github Actions by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#5994
-   libwebp-sys: 0.9.2 -> 0.9.3 by [@&#8203;LeSuisse](https://togithub.com/LeSuisse) in [vercel/turbo#5965
-   fix: add a hack to prevent flaky test from blocking others by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6006
-   Signal when signal handler is registered by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6010
-   release(turborepo): 1.10.15-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6007
-   Output logs docs update by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6005
-   chore: remove silent flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6008
-   fix: allow multiple threads to share hash tracker by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6012
-   fix(docs): add nextjs 11 link by [@&#8203;ragingwind](https://togithub.com/ragingwind) in [vercel/turbo#5978
-   chore: remove anyhow from task cache by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6013
-   Fix typo in showcase.mdx by [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) in [vercel/turbo#6014
-   feature(turborepo): Port Run Summary by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5833
-   fix(Turborepo): Pidlock owner now returns Result by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6025
-   chore: quiet warnings on turborepo build by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6033
-   feat(prune): add ability to specify scopes via argument instead of flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6022
-   feat: add method for piping child output to writer by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6031
-   fix: prefixed writer no longer includes prefix length in bytes written by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6032
-   feat(turborepo-auth): create new crate to handle authentication to backend by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6027
-   feat(Turborepo): Enable rust daemon by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5964
-   feat(turborepo-auth): move sso_login implementation to new crate by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6037
-   release(turborepo): 1.10.15-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6042
-   fix: Run outline bugs by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6041
-   Turbopack: add support for an asset prefix (and basePath in Next.js) by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [vercel/turbo#6036
-   Revert "Turbopack: add support for an asset prefix (and basePath in N… by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6044
-   refactor TaskScopes to use an aggregation tree by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5992
-   feat(turbo-ignore) add a --max-buffer option for dry runs that have large outputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6052
-   Tracing improvements by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6050
-   fix: add new test so we have test coverage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6056
-   Revert "Revert "Turbopack: add support for an asset prefix (and basePath in N… ([#&#8203;6044](https://togithub.com/vercel/turbo/issues/6044))" by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [vercel/turbo#6049
-   release(turborepo): 1.10.15-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6059
-   Performance Improvements (1) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6051
-   Performance Improvements (2) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6053
-   Performance Improvements (4) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6055
-   Update `swc_core` to `v0.83.28` by [@&#8203;kdy1](https://togithub.com/kdy1) in [vercel/turbo#6003
-   add hash() to FileContent by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6062
-   Handle errors from file hashing by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6060
-   feat(turborepo-auth): move logout function to crate by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6057
-   fix(lockfiles) no longer error when parsing out of date pnpm lockfiles by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6048
-   refactor(Turborepo): Extract LocalTurboState from RepoState by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6070
-   Performance Improvements (1+2) review follow-up by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6061
-   Performance improvements (3) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6045
-   feat: hook up process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6043
-   Add crate, move package json by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6077
-   fix: Link test race condition by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6081
-   fix: convert the lockfile path to a repo-root-relative path before use by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#5958
-   fix(turborepo): Unhide flags by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6021
-   feat: add task cache save by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6071
-   fix(Turborepo): copy yarn berry config files when running `turbo prune` by [@&#8203;artberri](https://togithub.com/artberri) in [vercel/turbo#6073
-   chore: Added logging for filter code by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6087
-   fix(turborepo): Don't recursively invoke self. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6091
-   fix(turborepo): Process single-package independently. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6086
-   fix(turbo-ignore): Quote the filter argument. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6096
-   release(turborepo): 1.10.15-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6097
-   feature(turborepo): Go Hashing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5851
-   Revert "feature(turborepo): Go Hashing ([#&#8203;5851](https://togithub.com/vercel/turbo/issues/5851))" by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6101
-   Set --single-package everywhere we can. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6102

#### New Contributors

-   [@&#8203;Zertsov](https://togithub.com/Zertsov) made their first contribution in [vercel/turbo#5994
-   [@&#8203;ragingwind](https://togithub.com/ragingwind) made their first contribution in [vercel/turbo#5978
-   [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) made their first contribution in [vercel/turbo#6014
-   [@&#8203;artberri](https://togithub.com/artberri) made their first contribution in [vercel/turbo#6073

**Full Changelog**: vercel/turbo@v1.10.14...v1.10.15

</details>

<details>
<summary>hosseinmd/prettier-plugin-jsdoc (prettier-plugin-jsdoc)</summary>

### [`v1.0.5`](https://togithub.com/hosseinmd/prettier-plugin-jsdoc/blob/HEAD/CHANGELOG.md#105-2023-10-05)

[Compare Source](https://togithub.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.0.4...v1.0.5)

### [`v1.0.4`](https://togithub.com/hosseinmd/prettier-plugin-jsdoc/blob/HEAD/CHANGELOG.md#104-2023-10-05)

[Compare Source](https://togithub.com/hosseinmd/prettier-plugin-jsdoc/compare/v1.0.3...v1.0.4)

</details>

---

### Configuration

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

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

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

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

---

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

---

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



PR-URL: #205
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot pushed a commit to timelessco/node-ts-app that referenced this pull request Oct 8, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`20.7.1` -> `20.8.2`](https://renovatebot.com/diffs/npm/@types%2fnode/20.7.1/20.8.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.7.1/20.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.7.1/20.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-config-canonical](https://togithub.com/gajus/eslint-config-canonical) | [`41.2.3` -> `41.3.0`](https://renovatebot.com/diffs/npm/eslint-config-canonical/41.2.3/41.3.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-canonical/41.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-canonical/41.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-canonical/41.2.3/41.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-canonical/41.2.3/41.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [knip](https://togithub.com/webpro/knip) | [`2.30.0` -> `2.30.1`](https://renovatebot.com/diffs/npm/knip/2.30.0/2.30.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/knip/2.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/knip/2.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/knip/2.30.0/2.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/knip/2.30.0/2.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [prettier-plugin-packagejson](https://togithub.com/matzkoh/prettier-plugin-packagejson) | [`2.4.5` -> `2.4.6`](https://renovatebot.com/diffs/npm/prettier-plugin-packagejson/2.4.5/2.4.6) | [![age](https://developer.mend.io/api/mc/badges/age/npm/prettier-plugin-packagejson/2.4.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prettier-plugin-packagejson/2.4.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prettier-plugin-packagejson/2.4.5/2.4.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prettier-plugin-packagejson/2.4.5/2.4.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.14` -> `1.10.15`](https://renovatebot.com/diffs/npm/turbo/1.10.14/1.10.15) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.14/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.14/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

</details>

<details>
<summary>webpro/knip (knip)</summary>

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.30.0...2.30.1)

-   Re-format markdown ([`122ccc1`](https://togithub.com/webpro/knip/commit/122ccc1))
-   Update dependencies ([`2e7f099`](https://togithub.com/webpro/knip/commit/2e7f099))
-   Add `curl` to list of ignored binaries ([`770c0b4`](https://togithub.com/webpro/knip/commit/770c0b4))

</details>

<details>
<summary>matzkoh/prettier-plugin-packagejson (prettier-plugin-packagejson)</summary>

### [`v2.4.6`](https://togithub.com/matzkoh/prettier-plugin-packagejson/releases/tag/v2.4.6)

[Compare Source](https://togithub.com/matzkoh/prettier-plugin-packagejson/compare/v2.4.5...v2.4.6)

##### Bug Fixes

-   **deps:** update dependency sort-package-json to v2.6.0 ([8a45e1e](https://togithub.com/matzkoh/prettier-plugin-packagejson/commit/8a45e1e3b3820ae0961dbbe8a32bf92dd7ce323d))

</details>

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

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

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



#### What's Changed

##### Changelog

-   release(turborepo): 1.10.14 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5963
-   Quiet a (mostly unaddressable) Sentry error by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5974
-   feat(turbopack): emit raw image bytes for unsupported codec by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [vercel/turbo#5967
-   sync deps by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5975
-   feat(create-turbo): support package manager opt by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5979
-   fix:(create-turbo) Review changes for package manager flag. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5980
-   fix(Turborepo): Add typescript peer dep as dev dep by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5985
-   fix(turborepo): Run outline fixes by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5966
-   fix(turborepo): Make shim do complete package manager detection. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5986
-   Link to Next.js issue link for Turbopack issues by [@&#8203;padmaia](https://togithub.com/padmaia) in [vercel/turbo#5991
-   add progress and top self time to convert trace tool by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5993
-   fix: make `OutputWriter` references `Send` by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5931
-   Add "toggleButton" to sidebar by [@&#8203;mitesh-gupta](https://togithub.com/mitesh-gupta) in [vercel/turbo#5968
-   fix(turbopack-ecmascript): make free var replacements (compile time defines) work for member expressions and allow JSON values by [@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in [vercel/turbo#6000
-   Allow task log prefixing in Github Actions by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#5994
-   libwebp-sys: 0.9.2 -> 0.9.3 by [@&#8203;LeSuisse](https://togithub.com/LeSuisse) in [vercel/turbo#5965
-   fix: add a hack to prevent flaky test from blocking others by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6006
-   Signal when signal handler is registered by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6010
-   release(turborepo): 1.10.15-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6007
-   Output logs docs update by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6005
-   chore: remove silent flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6008
-   fix: allow multiple threads to share hash tracker by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6012
-   fix(docs): add nextjs 11 link by [@&#8203;ragingwind](https://togithub.com/ragingwind) in [vercel/turbo#5978
-   chore: remove anyhow from task cache by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6013
-   Fix typo in showcase.mdx by [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) in [vercel/turbo#6014
-   feature(turborepo): Port Run Summary by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5833
-   fix(Turborepo): Pidlock owner now returns Result by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6025
-   chore: quiet warnings on turborepo build by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6033
-   feat(prune): add ability to specify scopes via argument instead of flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6022
-   feat: add method for piping child output to writer by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6031
-   fix: prefixed writer no longer includes prefix length in bytes written by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6032
-   feat(turborepo-auth): create new crate to handle authentication to backend by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6027
-   feat(Turborepo): Enable rust daemon by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5964
-   feat(turborepo-auth): move sso_login implementation to new crate by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6037
-   release(turborepo): 1.10.15-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6042
-   fix: Run outline bugs by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6041
-   Turbopack: add support for an asset prefix (and basePath in Next.js) by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [vercel/turbo#6036
-   Revert "Turbopack: add support for an asset prefix (and basePath in N… by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6044
-   refactor TaskScopes to use an aggregation tree by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5992
-   feat(turbo-ignore) add a --max-buffer option for dry runs that have large outputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6052
-   Tracing improvements by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6050
-   fix: add new test so we have test coverage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6056
-   Revert "Revert "Turbopack: add support for an asset prefix (and basePath in N… ([#&#8203;6044](https://togithub.com/vercel/turbo/issues/6044))" by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [vercel/turbo#6049
-   release(turborepo): 1.10.15-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6059
-   Performance Improvements (1) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6051
-   Performance Improvements (2) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6053
-   Performance Improvements (4) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6055
-   Update `swc_core` to `v0.83.28` by [@&#8203;kdy1](https://togithub.com/kdy1) in [vercel/turbo#6003
-   add hash() to FileContent by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6062
-   Handle errors from file hashing by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6060
-   feat(turborepo-auth): move logout function to crate by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6057
-   fix(lockfiles) no longer error when parsing out of date pnpm lockfiles by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6048
-   refactor(Turborepo): Extract LocalTurboState from RepoState by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6070
-   Performance Improvements (1+2) review follow-up by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6061
-   Performance improvements (3) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6045
-   feat: hook up process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6043
-   Add crate, move package json by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6077
-   fix: Link test race condition by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6081
-   fix: convert the lockfile path to a repo-root-relative path before use by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#5958
-   fix(turborepo): Unhide flags by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6021
-   feat: add task cache save by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6071
-   fix(Turborepo): copy yarn berry config files when running `turbo prune` by [@&#8203;artberri](https://togithub.com/artberri) in [vercel/turbo#6073
-   chore: Added logging for filter code by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6087
-   fix(turborepo): Don't recursively invoke self. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6091
-   fix(turborepo): Process single-package independently. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6086
-   fix(turbo-ignore): Quote the filter argument. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6096
-   release(turborepo): 1.10.15-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6097
-   feature(turborepo): Go Hashing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5851
-   Revert "feature(turborepo): Go Hashing ([#&#8203;5851](https://togithub.com/vercel/turbo/issues/5851))" by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6101
-   Set --single-package everywhere we can. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6102

#### New Contributors

-   [@&#8203;Zertsov](https://togithub.com/Zertsov) made their first contribution in [vercel/turbo#5994
-   [@&#8203;ragingwind](https://togithub.com/ragingwind) made their first contribution in [vercel/turbo#5978
-   [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) made their first contribution in [vercel/turbo#6014
-   [@&#8203;artberri](https://togithub.com/artberri) made their first contribution in [vercel/turbo#6073

**Full Changelog**: vercel/turbo@v1.10.14...v1.10.15

</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://developer.mend.io/github/timelessco/node-ts-app).
kodiakhq bot pushed a commit to timelessco/next-ts-app that referenced this pull request Oct 8, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@next/bundle-analyzer](https://togithub.com/vercel/next.js) | [`13.5.3` -> `13.5.4`](https://renovatebot.com/diffs/npm/@next%2fbundle-analyzer/13.5.3/13.5.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@next%2fbundle-analyzer/13.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@next%2fbundle-analyzer/13.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@next%2fbundle-analyzer/13.5.3/13.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@next%2fbundle-analyzer/13.5.3/13.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@next/env](https://togithub.com/vercel/next.js) | [`13.5.3` -> `13.5.4`](https://renovatebot.com/diffs/npm/@next%2fenv/13.5.3/13.5.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@next%2fenv/13.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@next%2fenv/13.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@next%2fenv/13.5.3/13.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@next%2fenv/13.5.3/13.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@next/eslint-plugin-next](https://togithub.com/vercel/next.js) | [`13.5.3` -> `13.5.4`](https://renovatebot.com/diffs/npm/@next%2feslint-plugin-next/13.5.3/13.5.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@next%2feslint-plugin-next/13.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@next%2feslint-plugin-next/13.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@next%2feslint-plugin-next/13.5.3/13.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@next%2feslint-plugin-next/13.5.3/13.5.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.18.0` -> `18.18.3`](https://renovatebot.com/diffs/npm/@types%2fnode/18.18.0/18.18.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/18.18.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/18.18.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/18.18.0/18.18.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/18.18.0/18.18.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.2.23` -> `18.2.25`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.23/18.2.25) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.25?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.25?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.23/18.2.25?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.23/18.2.25?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react-dom](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react-dom) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.2.8` -> `18.2.10`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.2.8/18.2.10) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact-dom/18.2.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact-dom/18.2.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact-dom/18.2.8/18.2.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact-dom/18.2.8/18.2.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-config-canonical](https://togithub.com/gajus/eslint-config-canonical) | [`41.2.3` -> `41.3.0`](https://renovatebot.com/diffs/npm/eslint-config-canonical/41.2.3/41.3.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-canonical/41.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-canonical/41.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-canonical/41.2.3/41.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-canonical/41.2.3/41.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [knip](https://togithub.com/webpro/knip) | [`2.30.0` -> `2.30.1`](https://renovatebot.com/diffs/npm/knip/2.30.0/2.30.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/knip/2.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/knip/2.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/knip/2.30.0/2.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/knip/2.30.0/2.30.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [postcss](https://postcss.org/) ([source](https://togithub.com/postcss/postcss)) | [`8.4.30` -> `8.4.31`](https://renovatebot.com/diffs/npm/postcss/8.4.30/8.4.31) | [![age](https://developer.mend.io/api/mc/badges/age/npm/postcss/8.4.31?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/postcss/8.4.31?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/postcss/8.4.30/8.4.31?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/postcss/8.4.30/8.4.31?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [prettier-plugin-packagejson](https://togithub.com/matzkoh/prettier-plugin-packagejson) | [`2.4.5` -> `2.4.6`](https://renovatebot.com/diffs/npm/prettier-plugin-packagejson/2.4.5/2.4.6) | [![age](https://developer.mend.io/api/mc/badges/age/npm/prettier-plugin-packagejson/2.4.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prettier-plugin-packagejson/2.4.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prettier-plugin-packagejson/2.4.5/2.4.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prettier-plugin-packagejson/2.4.5/2.4.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [prettier-plugin-tailwindcss](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss) | [`0.5.4` -> `0.5.5`](https://renovatebot.com/diffs/npm/prettier-plugin-tailwindcss/0.5.4/0.5.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/prettier-plugin-tailwindcss/0.5.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prettier-plugin-tailwindcss/0.5.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prettier-plugin-tailwindcss/0.5.4/0.5.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prettier-plugin-tailwindcss/0.5.4/0.5.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.14` -> `1.10.15`](https://renovatebot.com/diffs/npm/turbo/1.10.14/1.10.15) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.14/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.14/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [zod](https://zod.dev) ([source](https://togithub.com/colinhacks/zod)) | [`3.22.2` -> `3.22.4`](https://renovatebot.com/diffs/npm/zod/3.22.2/3.22.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/zod/3.22.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/zod/3.22.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/zod/3.22.2/3.22.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/zod/3.22.2/3.22.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>vercel/next.js (@&#8203;next/bundle-analyzer)</summary>

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

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

##### Core Changes

-   chore: NextJS -> Next.js: [#&#8203;55961](https://togithub.com/vercel/next.js/issues/55961)
-   fix-failed-to-generate-self-signed-certificate issue:[#&#8203;55891](https://togithub.com/vercel/next.js/issues/55891): [#&#8203;55947](https://togithub.com/vercel/next.js/issues/55947)
-   Remove .test.js from dist: [#&#8203;55946](https://togithub.com/vercel/next.js/issues/55946)
-   Turbopack next/font/google: don't insert css rules for multiple weights or styles: [#&#8203;55852](https://togithub.com/vercel/next.js/issues/55852)
-   Fix stale revalidate stream handling: [#&#8203;55978](https://togithub.com/vercel/next.js/issues/55978)
-   turbopack: improve turbopack/test stability: [#&#8203;56024](https://togithub.com/vercel/next.js/issues/56024)
-   Mark testmode fetches internal: [#&#8203;56036](https://togithub.com/vercel/next.js/issues/56036)
-   chore: Remove 'beta.' Subdomain from `beta.nextjs.org` Links: [#&#8203;55924](https://togithub.com/vercel/next.js/issues/55924)
-   Remove experimental.sharedPool: [#&#8203;56021](https://togithub.com/vercel/next.js/issues/56021)
-   fix(worker): pass env to build worker w/ `config.experimental.workerThreads`: [#&#8203;55257](https://togithub.com/vercel/next.js/issues/55257)
-   Update `swc_core` to `v0.83.26`: [#&#8203;55780](https://togithub.com/vercel/next.js/issues/55780)
-   Revert "Update `swc_core` to `v0.83.26`": [#&#8203;56077](https://togithub.com/vercel/next.js/issues/56077)
-   fix reporting of illegal segments when directory only contains irrelevant files: [#&#8203;56076](https://togithub.com/vercel/next.js/issues/56076)
-   Make `permanentRedirect` return 308 in route handlers: [#&#8203;56065](https://togithub.com/vercel/next.js/issues/56065)
-   Remove unneeded next-dev js in next-core: [#&#8203;56039](https://togithub.com/vercel/next.js/issues/56039)
-   Fix: Use `boolean` instead of `false` for experimental logging config: [#&#8203;56110](https://togithub.com/vercel/next.js/issues/56110)
-   chore: remove chalk in favor of picocolors: [#&#8203;55992](https://togithub.com/vercel/next.js/issues/55992)
-   Revert: "Generate prefetch RSC payload during build for SSR paths ([#&#8203;54403](https://togithub.com/vercel/next.js/issues/54403))": [#&#8203;56059](https://togithub.com/vercel/next.js/issues/56059)
-   fetching logging on edge: [#&#8203;56108](https://togithub.com/vercel/next.js/issues/56108)
-   Optimize build trace handling: [#&#8203;56048](https://togithub.com/vercel/next.js/issues/56048)
-   Update font data: [#&#8203;56121](https://togithub.com/vercel/next.js/issues/56121)
-   feat(turbopack): port bloom filter to nexturbo: [#&#8203;55678](https://togithub.com/vercel/next.js/issues/55678)
-   Fixes performance problems due to TaskScopes: [#&#8203;55721](https://togithub.com/vercel/next.js/issues/55721)
-   perf: remove react dom legacy from app router: [#&#8203;56082](https://togithub.com/vercel/next.js/issues/56082)
-   perf: replace zod with superstruct: [#&#8203;56083](https://togithub.com/vercel/next.js/issues/56083)
-   perf: externalise ws for bundled server: [#&#8203;56095](https://togithub.com/vercel/next.js/issues/56095)
-   misc: refactor node utils: [#&#8203;56096](https://togithub.com/vercel/next.js/issues/56096)
-   Add support for skipTrailingSlashRedirect and skipMiddlewareUrlNormalize in Turbopack: [#&#8203;56147](https://togithub.com/vercel/next.js/issues/56147)
-   Add experimental.scrollRestoration for Turbopack: [#&#8203;56150](https://togithub.com/vercel/next.js/issues/56150)
-   misc: refactor handleExternals: [#&#8203;56161](https://togithub.com/vercel/next.js/issues/56161)
-   perf: add option to bundle pages externals: [#&#8203;56162](https://togithub.com/vercel/next.js/issues/56162)
-   Allow jest to run with use server directive: [#&#8203;56148](https://togithub.com/vercel/next.js/issues/56148)
-   Update experimental compile cache handling: [#&#8203;56139](https://togithub.com/vercel/next.js/issues/56139)
-   App render related code clean up: [#&#8203;56178](https://togithub.com/vercel/next.js/issues/56178)
-   Add support for i18n config in Turbopack: [#&#8203;56182](https://togithub.com/vercel/next.js/issues/56182)
-   Implement list of config options for Turbopack: [#&#8203;56188](https://togithub.com/vercel/next.js/issues/56188)
-   Turbopack: add support for an assetPrefix and basePath: [#&#8203;56058](https://togithub.com/vercel/next.js/issues/56058)
-   update turbopack: [#&#8203;56197](https://togithub.com/vercel/next.js/issues/56197)
-   Update supported options list to reflect [#&#8203;56188](https://togithub.com/vercel/next.js/issues/56188): [#&#8203;56200](https://togithub.com/vercel/next.js/issues/56200)
-   Add support for experimental.logging.level in Turbopack: [#&#8203;56201](https://togithub.com/vercel/next.js/issues/56201)
-   Add next.config.js options to turbopack warning file: [#&#8203;56207](https://togithub.com/vercel/next.js/issues/56207)
-   fix: [@&#8203;libsql/client](https://togithub.com/libsql/client) build error: [#&#8203;56192](https://togithub.com/vercel/next.js/issues/56192)
-   chore: bump `postcss`: [#&#8203;56225](https://togithub.com/vercel/next.js/issues/56225)
-   Add additional handling for experimental-compile: [#&#8203;56224](https://togithub.com/vercel/next.js/issues/56224)
-   Drop ipc server headers filters: [#&#8203;56226](https://togithub.com/vercel/next.js/issues/56226)
-   only override NODE_EXTRA_CA_CERTS when using experimental https flag: [#&#8203;56252](https://togithub.com/vercel/next.js/issues/56252)
-   Pass same mangling option as terser to SWC minifier: [#&#8203;56281](https://togithub.com/vercel/next.js/issues/56281)
-   update turbopack: [#&#8203;56285](https://togithub.com/vercel/next.js/issues/56285)
-   clear require cache only when needed: [#&#8203;56198](https://togithub.com/vercel/next.js/issues/56198)
-   misc: enable source maps for bundled runtime: [#&#8203;56289](https://togithub.com/vercel/next.js/issues/56289)
-   misc: shortcut styled-jsx in external resolution: [#&#8203;56291](https://togithub.com/vercel/next.js/issues/56291)
-   Support serverRuntimeConfig and publicRuntimeConfig in Turbopack: [#&#8203;56310](https://togithub.com/vercel/next.js/issues/56310)
-   Reland static prefetches & fix prefetch bailout behavior: [#&#8203;56228](https://togithub.com/vercel/next.js/issues/56228)
-   fix([#&#8203;53190](https://togithub.com/vercel/next.js/issues/53190)): add missing crossOrigin to assetsPrefix resources: [#&#8203;56311](https://togithub.com/vercel/next.js/issues/56311)
-   misc: fix instrumentation with bundled server: [#&#8203;56318](https://togithub.com/vercel/next.js/issues/56318)
-   fix(next/client): keep hash when navigating from app to pages router: [#&#8203;56223](https://togithub.com/vercel/next.js/issues/56223)
-   fix: support both decoded and encoded url requests of conventioned files : [#&#8203;56187](https://togithub.com/vercel/next.js/issues/56187)
-   fix: Invalid URL (404) provided on server actions error: [#&#8203;56323](https://togithub.com/vercel/next.js/issues/56323)
-   Revert "misc: shortcut styled-jsx in external resolution ([#&#8203;56291](https://togithub.com/vercel/next.js/issues/56291))": [#&#8203;56334](https://togithub.com/vercel/next.js/issues/56334)
-   Fix build output logging order: [#&#8203;56335](https://togithub.com/vercel/next.js/issues/56335)

##### Documentation Changes

-   docs: add `not-found` to file conventions page: [#&#8203;55944](https://togithub.com/vercel/next.js/issues/55944)
-   Update 03-linking-and-navigating.mdx: [#&#8203;55907](https://togithub.com/vercel/next.js/issues/55907)
-   docs: Correct place for passing `extension` option to `createMDX()`: [#&#8203;55967](https://togithub.com/vercel/next.js/issues/55967)
-   docs-55629 update router cache column in cache interactions api table: [#&#8203;55630](https://togithub.com/vercel/next.js/issues/55630)
-   Update 03-linking-and-navigating.mdx: [#&#8203;55969](https://togithub.com/vercel/next.js/issues/55969)
-   Updates "Prerender Error" page for App Router: [#&#8203;56044](https://togithub.com/vercel/next.js/issues/56044)
-   Add the default import alias to create-next-app prompt for clarity: [#&#8203;55896](https://togithub.com/vercel/next.js/issues/55896)
-   Update revalidatePath.mdx to fix confusing wording of arguments section.: [#&#8203;56099](https://togithub.com/vercel/next.js/issues/56099)
-   docs: Renamed function that is used by other name: [#&#8203;56170](https://togithub.com/vercel/next.js/issues/56170)
-   (docs) Document Server Actions `.bind` method: [#&#8203;56164](https://togithub.com/vercel/next.js/issues/56164)
-   docs: Use `Response.json` over `NextResponse.json`: [#&#8203;56173](https://togithub.com/vercel/next.js/issues/56173)
-   correcting link to useSearchParams ref: [#&#8203;56169](https://togithub.com/vercel/next.js/issues/56169)
-   docs(sharp-missing-in-production.mdx): update standalone command: [#&#8203;56191](https://togithub.com/vercel/next.js/issues/56191)
-   docs(sharp-missing-in-production.mdx): update standalone command: [#&#8203;56239](https://togithub.com/vercel/next.js/issues/56239)
-   Update image.mdx: [#&#8203;56269](https://togithub.com/vercel/next.js/issues/56269)
-   Update image.mdx: [#&#8203;56266](https://togithub.com/vercel/next.js/issues/56266)

##### Example Changes

-   chore(examples): bump dependency versions: [#&#8203;55899](https://togithub.com/vercel/next.js/issues/55899)
-   Update to with-supertokens example app: [#&#8203;56035](https://togithub.com/vercel/next.js/issues/56035)
-   Update dependencies in examples : [#&#8203;55993](https://togithub.com/vercel/next.js/issues/55993)
-   Chore/update with supabase demo deploy button: [#&#8203;52483](https://togithub.com/vercel/next.js/issues/52483)
-   chore(examples): remove deprecated dependency from `with-jest`: [#&#8203;56152](https://togithub.com/vercel/next.js/issues/56152)
-   chore(examples): fix `with-jest` types: [#&#8203;56193](https://togithub.com/vercel/next.js/issues/56193)
-   (Examples) update Grafbase example: [#&#8203;54705](https://togithub.com/vercel/next.js/issues/54705)
-   fix: typo in `with-stripe-typescript` example: [#&#8203;56274](https://togithub.com/vercel/next.js/issues/56274)

##### Misc Changes

-   Skip production tests for Turbopack: [#&#8203;56045](https://togithub.com/vercel/next.js/issues/56045)
-   Fix invalid build-and-test workflow: [#&#8203;56053](https://togithub.com/vercel/next.js/issues/56053)
-   turbopack: Add more skipped tests: [#&#8203;56052](https://togithub.com/vercel/next.js/issues/56052)
-   Skip next build test: [#&#8203;56079](https://togithub.com/vercel/next.js/issues/56079)
-   add flakey test: [#&#8203;56080](https://togithub.com/vercel/next.js/issues/56080)
-   Skip more production tests for turbopack: [#&#8203;56084](https://togithub.com/vercel/next.js/issues/56084)
-   Ensure tests suites have unique names: [#&#8203;56085](https://togithub.com/vercel/next.js/issues/56085)
-   Skip experimental.nextScriptWorkers test for Turbopack: [#&#8203;56086](https://togithub.com/vercel/next.js/issues/56086)
-   Skip production tests for Turbopack: [#&#8203;56089](https://togithub.com/vercel/next.js/issues/56089)
-   Skip Babel tests for Turbopack: [#&#8203;56091](https://togithub.com/vercel/next.js/issues/56091)
-   misc: add node-version file: [#&#8203;55938](https://togithub.com/vercel/next.js/issues/55938)
-   Ensure unique name for app dir css tests: [#&#8203;56088](https://togithub.com/vercel/next.js/issues/56088)
-   Decrease default test timeouts: [#&#8203;56116](https://togithub.com/vercel/next.js/issues/56116)
-   misc: stop hiding node_modules in vscode: [#&#8203;56081](https://togithub.com/vercel/next.js/issues/56081)
-   special case timeout on windows: [#&#8203;56120](https://togithub.com/vercel/next.js/issues/56120)
-   Turbopack: update test manifest: [#&#8203;56133](https://togithub.com/vercel/next.js/issues/56133)
-   More test updates: [#&#8203;56146](https://togithub.com/vercel/next.js/issues/56146)
-   fix(cna): pin dependency versions: [#&#8203;56177](https://togithub.com/vercel/next.js/issues/56177)
-   Update `swc_core` to `v0.83.28`: [#&#8203;56134](https://togithub.com/vercel/next.js/issues/56134)
-   Fix middleware-general test for Turbopack: [#&#8203;56211](https://togithub.com/vercel/next.js/issues/56211)
-   More Turbopack test fixes: [#&#8203;56248](https://togithub.com/vercel/next.js/issues/56248)
-   update test mainfest: [#&#8203;56214](https://togithub.com/vercel/next.js/issues/56214)
-   More Turbopack fixes: [#&#8203;56275](https://togithub.com/vercel/next.js/issues/56275)
-   More Turbopack fixes: [#&#8203;56299](https://togithub.com/vercel/next.js/issues/56299)
-   misc: update code owners: [#&#8203;56290](https://togithub.com/vercel/next.js/issues/56290)
-   Fix flaky test for size output: [#&#8203;56303](https://togithub.com/vercel/next.js/issues/56303)
-   update webp crate: [#&#8203;56307](https://togithub.com/vercel/next.js/issues/56307)
-   Remove buildId test as it's no longer relevant: [#&#8203;56316](https://togithub.com/vercel/next.js/issues/56316)
-   Add code freeze GitHub actions for releasing: [#&#8203;56325](https://togithub.com/vercel/next.js/issues/56325)
-   test: add flaky turbopack integration tests to manifest: [#&#8203;56309](https://togithub.com/vercel/next.js/issues/56309)

##### Credits

Huge thanks to [@&#8203;balazsorban44](https://togithub.com/balazsorban44), [@&#8203;sdkdeepa](https://togithub.com/sdkdeepa), [@&#8203;aayman997](https://togithub.com/aayman997), [@&#8203;mayank1513](https://togithub.com/mayank1513), [@&#8203;timneutkens](https://togithub.com/timneutkens), [@&#8203;2XG-DEV](https://togithub.com/2XG-DEV), [@&#8203;eliot-akira](https://togithub.com/eliot-akira), [@&#8203;hi-matthew](https://togithub.com/hi-matthew), [@&#8203;riobits](https://togithub.com/riobits), [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith), [@&#8203;ijjk](https://togithub.com/ijjk), [@&#8203;sokra](https://togithub.com/sokra), [@&#8203;dvoytenko](https://togithub.com/dvoytenko), [@&#8203;rishabhpoddar](https://togithub.com/rishabhpoddar), [@&#8203;manovotny](https://togithub.com/manovotny), [@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset), [@&#8203;huozhi](https://togithub.com/huozhi), [@&#8203;jridgewell](https://togithub.com/jridgewell), [@&#8203;joulev](https://togithub.com/joulev), [@&#8203;SukkaW](https://togithub.com/SukkaW), [@&#8203;kdy1](https://togithub.com/kdy1), [@&#8203;feedthejim](https://togithub.com/feedthejim), [@&#8203;Fredkiss3](https://togithub.com/Fredkiss3), [@&#8203;styfle](https://togithub.com/styfle), [@&#8203;MildTomato](https://togithub.com/MildTomato), [@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony), [@&#8203;walfly](https://togithub.com/walfly), [@&#8203;bzhn](https://togithub.com/bzhn), [@&#8203;shuding](https://togithub.com/shuding), [@&#8203;boylett](https://togithub.com/boylett), [@&#8203;Loki899899](https://togithub.com/Loki899899), [@&#8203;devrsi0n](https://togithub.com/devrsi0n), [@&#8203;ImBIOS](https://togithub.com/ImBIOS), [@&#8203;vinaykulk621](https://togithub.com/vinaykulk621), [@&#8203;ztanner](https://togithub.com/ztanner), [@&#8203;sdaigo](https://togithub.com/sdaigo), [@&#8203;hamirmahal](https://togithub.com/hamirmahal), [@&#8203;blurrah](https://togithub.com/blurrah), [@&#8203;omarmciver](https://togithub.com/omarmciver), and [@&#8203;alexBaizeau](https://togithub.com/alexBaizeau) for helping!

</details>

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

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

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

</details>

<details>
<summary>webpro/knip (knip)</summary>

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.30.0...2.30.1)

-   Re-format markdown ([`122ccc1`](https://togithub.com/webpro/knip/commit/122ccc1))
-   Update dependencies ([`2e7f099`](https://togithub.com/webpro/knip/commit/2e7f099))
-   Add `curl` to list of ignored binaries ([`770c0b4`](https://togithub.com/webpro/knip/commit/770c0b4))

</details>

<details>
<summary>postcss/postcss (postcss)</summary>

### [`v8.4.31`](https://togithub.com/postcss/postcss/blob/HEAD/CHANGELOG.md#8431)

[Compare Source](https://togithub.com/postcss/postcss/compare/8.4.30...8.4.31)

-   Fixed `\r` parsing to fix CVE-2023-44270.

</details>

<details>
<summary>matzkoh/prettier-plugin-packagejson (prettier-plugin-packagejson)</summary>

### [`v2.4.6`](https://togithub.com/matzkoh/prettier-plugin-packagejson/releases/tag/v2.4.6)

[Compare Source](https://togithub.com/matzkoh/prettier-plugin-packagejson/compare/v2.4.5...v2.4.6)

##### Bug Fixes

-   **deps:** update dependency sort-package-json to v2.6.0 ([8a45e1e](https://togithub.com/matzkoh/prettier-plugin-packagejson/commit/8a45e1e3b3820ae0961dbbe8a32bf92dd7ce323d))

</details>

<details>
<summary>tailwindlabs/prettier-plugin-tailwindcss (prettier-plugin-tailwindcss)</summary>

### [`v0.5.5`](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/blob/HEAD/CHANGELOG.md#055---2023-10-03)

[Compare Source](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/compare/v0.5.4...v0.5.5)

##### Fixed

-   Sort classes inside `className` in Astro ([#&#8203;215](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/pull/215))
-   Support member access on function calls ([#&#8203;218](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/pull/218))

</details>

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

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

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



#### What's Changed

##### Changelog

-   release(turborepo): 1.10.14 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5963
-   Quiet a (mostly unaddressable) Sentry error by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5974
-   feat(turbopack): emit raw image bytes for unsupported codec by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [vercel/turbo#5967
-   sync deps by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5975
-   feat(create-turbo): support package manager opt by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5979
-   fix:(create-turbo) Review changes for package manager flag. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5980
-   fix(Turborepo): Add typescript peer dep as dev dep by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5985
-   fix(turborepo): Run outline fixes by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5966
-   fix(turborepo): Make shim do complete package manager detection. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5986
-   Link to Next.js issue link for Turbopack issues by [@&#8203;padmaia](https://togithub.com/padmaia) in [vercel/turbo#5991
-   add progress and top self time to convert trace tool by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5993
-   fix: make `OutputWriter` references `Send` by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5931
-   Add "toggleButton" to sidebar by [@&#8203;mitesh-gupta](https://togithub.com/mitesh-gupta) in [vercel/turbo#5968
-   fix(turbopack-ecmascript): make free var replacements (compile time defines) work for member expressions and allow JSON values by [@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in [vercel/turbo#6000
-   Allow task log prefixing in Github Actions by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#5994
-   libwebp-sys: 0.9.2 -> 0.9.3 by [@&#8203;LeSuisse](https://togithub.com/LeSuisse) in [vercel/turbo#5965
-   fix: add a hack to prevent flaky test from blocking others by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6006
-   Signal when signal handler is registered by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6010
-   release(turborepo): 1.10.15-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6007
-   Output logs docs update by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6005
-   chore: remove silent flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6008
-   fix: allow multiple threads to share hash tracker by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6012
-   fix(docs): add nextjs 11 link by [@&#8203;ragingwind](https://togithub.com/ragingwind) in [vercel/turbo#5978
-   chore: remove anyhow from task cache by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6013
-   Fix typo in showcase.mdx by [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) in [vercel/turbo#6014
-   feature(turborepo): Port Run Summary by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5833
-   fix(Turborepo): Pidlock owner now returns Result by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6025
-   chore: quiet warnings on turborepo build by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6033
-   feat(prune): add ability to specify scopes via argument instead of flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6022
-   feat: add method for piping child output to writer by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6031
-   fix: prefixed writer no longer includes prefix length in bytes written by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6032
-   feat(turborepo-auth): create new crate to handle authentication to backend by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6027
-   feat(Turborepo): Enable rust daemon by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5964
-   feat(turborepo-auth): move sso_login implementation to new crate by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6037
-   release(turborepo): 1.10.15-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6042
-   fix: Run outline bugs by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6041
-   Turbopack: add support for an asset prefix (and basePath in Next.js) by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [vercel/turbo#6036
-   Revert "Turbopack: add support for an asset prefix (and basePath in N… by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6044
-   refactor TaskScopes to use an aggregation tree by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5992
-   feat(turbo-ignore) add a --max-buffer option for dry runs that have large outputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6052
-   Tracing improvements by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6050
-   fix: add new test so we have test coverage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6056
-   Revert "Revert "Turbopack: add support for an asset prefix (and basePath in N… ([#&#8203;6044](https://togithub.com/vercel/turbo/issues/6044))" by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [vercel/turbo#6049
-   release(turborepo): 1.10.15-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6059
-   Performance Improvements (1) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6051
-   Performance Improvements (2) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6053
-   Performance Improvements (4) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6055
-   Update `swc_core` to `v0.83.28` by [@&#8203;kdy1](https://togithub.com/kdy1) in [vercel/turbo#6003
-   add hash() to FileContent by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6062
-   Handle errors from file hashing by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6060
-   feat(turborepo-auth): move logout function to crate by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6057
-   fix(lockfiles) no longer error when parsing out of date pnpm lockfiles by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6048
-   refactor(Turborepo): Extract LocalTurboState from RepoState by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6070
-   Performance Improvements (1+2) review follow-up by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6061
-   Performance improvements (3) by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6045
-   feat: hook up process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6043
-   Add crate, move package json by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6077
-   fix: Link test race condition by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6081
-   fix: convert the lockfile path to a repo-root-relative path before use by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#5958
-   fix(turborepo): Unhide flags by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6021
-   feat: add task cache save by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6071
-   fix(Turborepo): copy yarn berry config files when running `turbo prune` by [@&#8203;artberri](https://togithub.com/artberri) in [vercel/turbo#6073
-   chore: Added logging for filter code by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6087
-   fix(turborepo): Don't recursively invoke self. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6091
-   fix(turborepo): Process single-package independently. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6086
-   fix(turbo-ignore): Quote the filter argument. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6096
-   release(turborepo): 1.10.15-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6097
-   feature(turborepo): Go Hashing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5851
-   Revert "feature(turborepo): Go Hashing ([#&#8203;5851](https://togithub.com/vercel/turbo/issues/5851))" by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6101
-   Set --single-package everywhere we can. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#6102

#### New Contributors

-   [@&#8203;Zertsov](https://togithub.com/Zertsov) made their first contribution in [vercel/turbo#5994
-   [@&#8203;ragingwind](https://togithub.com/ragingwind) made their first contribution in [vercel/turbo#5978
-   [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) made their first contribution in [vercel/turbo#6014
-   [@&#8203;artberri](https://togithub.com/artberri) made their first contribution in [vercel/turbo#6073

**Full Changelog**: vercel/turbo@v1.10.14...v1.10.15

</details>

<details>
<summary>colinhacks/zod (zod)</summary>

### [`v3.22.4`](https://togithub.com/colinhacks/zod/releases/tag/v3.22.4)

[Compare Source](https://togithub.com/colinhacks/zod/compare/v3.22.3...v3.22.4)

#### Commits:

-   [`d931ea3`](https://togithub.com/colinhacks/zod/commit/d931ea3f0f15a6ae64f5f68e3c03912dffb2269d) Lint
-   [`8e634bd`](https://togithub.com/colinhacks/zod/commit/8e634bd600093b7161487bed705279c892395118) Fix prettier
-   [`4018d88`](https://togithub.com/colinhacks/zod/commit/4018d88f0e94992b2987428c4fda387b99ae2a53) docs: add [@&#8203;sanity-typed/zod](https://togithub.com/sanity-typed/zod) to ecosystem ([#&#8203;2731](https://togithub.com/colinhacks/zod/issues/2731))
-   [`15ba5a4`](https://togithub.com/colinhacks/zod/commit/15ba5a4d4cb5be5af23771de0ba1346b4ba20a0e) docs: add `zod-sandbox` to README ecosystem links ([#&#8203;2707](https://togithub.com/colinhacks/zod/issues/2707))
-   [`699ccae`](https://togithub.com/colinhacks/zod/commit/699ccae13b875d4fcadac268fd789c93b6ce8aef) Export jsdoc with `@deprecated` when building ([#&#8203;2717](https://togithub.com/colinhacks/zod/issues/2717))
-   [`dfe3719`](https://togithub.com/colinhacks/zod/commit/dfe3719eae250ab3eca2d276da6c292867899cc6) Fix sanity-typed links ([#&#8203;2840](https://togithub.com/colinhacks/zod/issues/2840))
-   [`cd7991e`](https://togithub.com/colinhacks/zod/commit/cd7991e04a550868bfcb5b5d46e5eb5bc7edf5f3) fix ulid regex ([#&#8203;2225](https://togithub.com/colinhacks/zod/issues/2225))
-   [`7cb4ba2`](https://togithub.com/colinhacks/zod/commit/7cb4ba2f85dd6b28290dda5de80ed54dfd2a793c) Remove stalebot
-   [`9340fd5`](https://togithub.com/colinhacks/zod/commit/9340fd51e48576a75adc919bff65dbc4a5d4c99b) Lazy emojiRegex
-   [`e7a9b9b`](https://togithub.com/colinhacks/zod/commit/e7a9b9b3033991be6b4225f1be21da39c250bbb0) 3.22.4

### [`v3.22.3`](https://togithub.com/colinhacks/zod/releases/tag/v3.22.3)

[Compare Source](https://togithub.com/colinhacks/zod/compare/v3.22.2...v3.22.3)

##### Commits:

-   [`1e23990`](https://togithub.com/colinhacks/zod/commit/1e23990bcdd33d1e81b31e40e77a031fcfd87ce1) Commit
-   [`9bd3879`](https://togithub.com/colinhacks/zod/commit/9bd3879b482f139fd03d5025813ee66a04195cdd) docs: remove obsolete text about readonly types ([#&#8203;2676](https://togithub.com/colinhacks/zod/issues/2676))
-   [`f59be09`](https://togithub.com/colinhacks/zod/commit/f59be093ec21430d9f32bbcb628d7e39116adf34) clarify datetime ISO 8601 ([#&#8203;2673](https://togithub.com/colinhacks/zod/issues/2673))
-   [`64dcc8e`](https://togithub.com/colinhacks/zod/commit/64dcc8e2b16febe48fa8e3c82c47c92643e6c9e3) Update sponsors
-   [`18115a8`](https://togithub.com/colinhacks/zod/commit/18115a8f128680b4526df58ce96deab7dce93b93) Formatting
-   [`28c1927`](https://togithub.com/colinhacks/zod/commit/28c19273658b164c53c149785fa7a8187c428ad4) Update sponsors
-   [`ad2ee9c`](https://togithub.com/colinhacks/zod/commit/ad2ee9ccf723c4388158ff6b8669c2a6cdc85643) 2718 Updated Custom Schemas documentation example to use type narrowing ([#&#8203;2778](https://togithub.com/colinhacks/zod/issues/2778))
-   [`ae0f7a2`](https://togithub.com/colinhacks/zod/commit/ae0f7a2c15e7741ee1b23c03a3bfb9acebd86551) docs: update ref to discriminated-unions docs ([#&#8203;2485](https://togithub.com/colinhacks/zod/issues/2485))
-   [`2ba00fe`](https://togithub.com/colinhacks/zod/commit/2ba00fe2377f4d53947a84b8cdb314a63bbd6dd4) \[2609] fix ReDoS vulnerability in email regex ([#&#8203;2824](https://togithub.com/colinhacks/zod/issues/2824))
-   [`1e61d76`](https://togithub.com/colinhacks/zod/commit/1e61d76cdec05de9271fc0df58798ddf9ce94923) 3.22.3

</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://developer.mend.io/github/timelessco/next-ts-app).
fuxingloh pushed a commit to fuxingloh/contented that referenced this pull request Oct 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.10.14` ->
`^1.10.15`](https://renovatebot.com/diffs/npm/turbo/1.10.14/1.10.15) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.14/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.14/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.14 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5963
- Quiet a (mostly unaddressable) Sentry error by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5974
- feat(turbopack): emit raw image bytes for unsupported codec by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[vercel/turbo#5967
- sync deps by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5975
- feat(create-turbo): support package manager opt by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5979
- fix:(create-turbo) Review changes for package manager flag. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5980
- fix(Turborepo): Add typescript peer dep as dev dep by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5985
- fix(turborepo): Run outline fixes by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5966
- fix(turborepo): Make shim do complete package manager detection. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5986
- Link to Next.js issue link for Turbopack issues by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[vercel/turbo#5991
- add progress and top self time to convert trace tool by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5993
- fix: make `OutputWriter` references `Send` by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5931
- Add "toggleButton" to sidebar by
[@&#8203;mitesh-gupta](https://togithub.com/mitesh-gupta) in
[vercel/turbo#5968
- fix(turbopack-ecmascript): make free var replacements (compile time
defines) work for member expressions and allow JSON values by
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in
[vercel/turbo#6000
- Allow task log prefixing in Github Actions by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#5994
- libwebp-sys: 0.9.2 -> 0.9.3 by
[@&#8203;LeSuisse](https://togithub.com/LeSuisse) in
[vercel/turbo#5965
- fix: add a hack to prevent flaky test from blocking others by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6006
- Signal when signal handler is registered by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6010
- release(turborepo): 1.10.15-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6007
- Output logs docs update by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6005
- chore: remove silent flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6008
- fix: allow multiple threads to share hash tracker by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6012
- fix(docs): add nextjs 11 link by
[@&#8203;ragingwind](https://togithub.com/ragingwind) in
[vercel/turbo#5978
- chore: remove anyhow from task cache by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6013
- Fix typo in showcase.mdx by
[@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) in
[vercel/turbo#6014
- feature(turborepo): Port Run Summary by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5833
- fix(Turborepo): Pidlock owner now returns Result by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6025
- chore: quiet warnings on turborepo build by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6033
- feat(prune): add ability to specify scopes via argument instead of
flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski)
in
[vercel/turbo#6022
- feat: add method for piping child output to writer by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6031
- fix: prefixed writer no longer includes prefix length in bytes written
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6032
- feat(turborepo-auth): create new crate to handle authentication to
backend by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6027
- feat(Turborepo): Enable rust daemon by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5964
- feat(turborepo-auth): move sso_login implementation to new crate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6037
- release(turborepo): 1.10.15-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6042
- fix: Run outline bugs by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6041
- Turbopack: add support for an asset prefix (and basePath in Next.js)
by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[vercel/turbo#6036
- Revert "Turbopack: add support for an asset prefix (and basePath in N…
by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6044
- refactor TaskScopes to use an aggregation tree by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5992
- feat(turbo-ignore) add a --max-buffer option for dry runs that have
large outputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6052
- Tracing improvements by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6050
- fix: add new test so we have test coverage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6056
- Revert "Revert "Turbopack: add support for an asset prefix (and
basePath in N…
([#&#8203;6044](https://togithub.com/vercel/turbo/issues/6044))" by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[vercel/turbo#6049
- release(turborepo): 1.10.15-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6059
- Performance Improvements (1) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6051
- Performance Improvements (2) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6053
- Performance Improvements (4) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6055
- Update `swc_core` to `v0.83.28` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[vercel/turbo#6003
- add hash() to FileContent by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6062
- Handle errors from file hashing by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6060
- feat(turborepo-auth): move logout function to crate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6057
- fix(lockfiles) no longer error when parsing out of date pnpm lockfiles
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6048
- refactor(Turborepo): Extract LocalTurboState from RepoState by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6070
- Performance Improvements (1+2) review follow-up by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6061
- Performance improvements (3) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6045
- feat: hook up process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6043
- Add crate, move package json by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6077
- fix: Link test race condition by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6081
- fix: convert the lockfile path to a repo-root-relative path before use
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5958
- fix(turborepo): Unhide flags by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6021
- feat: add task cache save by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6071
- fix(Turborepo): copy yarn berry config files when running `turbo
prune` by [@&#8203;artberri](https://togithub.com/artberri) in
[vercel/turbo#6073
- chore: Added logging for filter code by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6087
- fix(turborepo): Don't recursively invoke self. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6091
- fix(turborepo): Process single-package independently. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6086
- fix(turbo-ignore): Quote the filter argument. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6096
- release(turborepo): 1.10.15-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6097
- feature(turborepo): Go Hashing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5851
- Revert "feature(turborepo): Go Hashing
([#&#8203;5851](https://togithub.com/vercel/turbo/issues/5851))" by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6101
- Set --single-package everywhere we can. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6102

#### New Contributors

- [@&#8203;Zertsov](https://togithub.com/Zertsov) made their first
contribution in
[vercel/turbo#5994
- [@&#8203;ragingwind](https://togithub.com/ragingwind) made their first
contribution in
[vercel/turbo#5978
- [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) made their
first contribution in
[vercel/turbo#6014
- [@&#8203;artberri](https://togithub.com/artberri) made their first
contribution in
[vercel/turbo#6073

**Full Changelog**:
vercel/turbo@v1.10.14...v1.10.15

</details>

---

### Configuration

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

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

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

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

---

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

---

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

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
sebald pushed a commit to sebald/pattern-analyzer that referenced this pull request Oct 14, 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.14` ->
`1.10.15`](https://renovatebot.com/diffs/npm/turbo/1.10.14/1.10.15) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.14/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.14/1.10.15?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.14 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5963
- Quiet a (mostly unaddressable) Sentry error by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5974
- feat(turbopack): emit raw image bytes for unsupported codec by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[vercel/turbo#5967
- sync deps by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5975
- feat(create-turbo): support package manager opt by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5979
- fix:(create-turbo) Review changes for package manager flag. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5980
- fix(Turborepo): Add typescript peer dep as dev dep by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5985
- fix(turborepo): Run outline fixes by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5966
- fix(turborepo): Make shim do complete package manager detection. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5986
- Link to Next.js issue link for Turbopack issues by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[vercel/turbo#5991
- add progress and top self time to convert trace tool by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5993
- fix: make `OutputWriter` references `Send` by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5931
- Add "toggleButton" to sidebar by
[@&#8203;mitesh-gupta](https://togithub.com/mitesh-gupta) in
[vercel/turbo#5968
- fix(turbopack-ecmascript): make free var replacements (compile time
defines) work for member expressions and allow JSON values by
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in
[vercel/turbo#6000
- Allow task log prefixing in Github Actions by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#5994
- libwebp-sys: 0.9.2 -> 0.9.3 by
[@&#8203;LeSuisse](https://togithub.com/LeSuisse) in
[vercel/turbo#5965
- fix: add a hack to prevent flaky test from blocking others by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6006
- Signal when signal handler is registered by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6010
- release(turborepo): 1.10.15-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6007
- Output logs docs update by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6005
- chore: remove silent flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6008
- fix: allow multiple threads to share hash tracker by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6012
- fix(docs): add nextjs 11 link by
[@&#8203;ragingwind](https://togithub.com/ragingwind) in
[vercel/turbo#5978
- chore: remove anyhow from task cache by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6013
- Fix typo in showcase.mdx by
[@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) in
[vercel/turbo#6014
- feature(turborepo): Port Run Summary by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5833
- fix(Turborepo): Pidlock owner now returns Result by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6025
- chore: quiet warnings on turborepo build by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6033
- feat(prune): add ability to specify scopes via argument instead of
flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski)
in
[vercel/turbo#6022
- feat: add method for piping child output to writer by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6031
- fix: prefixed writer no longer includes prefix length in bytes written
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6032
- feat(turborepo-auth): create new crate to handle authentication to
backend by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6027
- feat(Turborepo): Enable rust daemon by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5964
- feat(turborepo-auth): move sso_login implementation to new crate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6037
- release(turborepo): 1.10.15-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6042
- fix: Run outline bugs by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6041
- Turbopack: add support for an asset prefix (and basePath in Next.js)
by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[vercel/turbo#6036
- Revert "Turbopack: add support for an asset prefix (and basePath in N…
by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6044
- refactor TaskScopes to use an aggregation tree by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5992
- feat(turbo-ignore) add a --max-buffer option for dry runs that have
large outputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6052
- Tracing improvements by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6050
- fix: add new test so we have test coverage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6056
- Revert "Revert "Turbopack: add support for an asset prefix (and
basePath in N…
([#&#8203;6044](https://togithub.com/vercel/turbo/issues/6044))" by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[vercel/turbo#6049
- release(turborepo): 1.10.15-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6059
- Performance Improvements (1) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6051
- Performance Improvements (2) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6053
- Performance Improvements (4) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6055
- Update `swc_core` to `v0.83.28` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[vercel/turbo#6003
- add hash() to FileContent by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6062
- Handle errors from file hashing by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6060
- feat(turborepo-auth): move logout function to crate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6057
- fix(lockfiles) no longer error when parsing out of date pnpm lockfiles
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6048
- refactor(Turborepo): Extract LocalTurboState from RepoState by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6070
- Performance Improvements (1+2) review follow-up by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6061
- Performance improvements (3) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6045
- feat: hook up process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6043
- Add crate, move package json by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6077
- fix: Link test race condition by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6081
- fix: convert the lockfile path to a repo-root-relative path before use
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5958
- fix(turborepo): Unhide flags by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6021
- feat: add task cache save by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6071
- fix(Turborepo): copy yarn berry config files when running `turbo
prune` by [@&#8203;artberri](https://togithub.com/artberri) in
[vercel/turbo#6073
- chore: Added logging for filter code by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6087
- fix(turborepo): Don't recursively invoke self. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6091
- fix(turborepo): Process single-package independently. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6086
- fix(turbo-ignore): Quote the filter argument. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6096
- release(turborepo): 1.10.15-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6097
- feature(turborepo): Go Hashing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5851
- Revert "feature(turborepo): Go Hashing
([#&#8203;5851](https://togithub.com/vercel/turbo/issues/5851))" by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6101
- Set --single-package everywhere we can. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6102

#### New Contributors

- [@&#8203;Zertsov](https://togithub.com/Zertsov) made their first
contribution in
[vercel/turbo#5994
- [@&#8203;ragingwind](https://togithub.com/ragingwind) made their first
contribution in
[vercel/turbo#5978
- [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) made their
first contribution in
[vercel/turbo#6014
- [@&#8203;artberri](https://togithub.com/artberri) made their first
contribution in
[vercel/turbo#6073

**Full Changelog**:
vercel/turbo@v1.10.14...v1.10.15

</details>

---

### Configuration

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

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

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

🔕 **Ignore**: Close this PR and you won't be reminded about 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/sebald/pattern-analyzer).

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
benelan pushed a commit to Esri/calcite-design-system that referenced this pull request Oct 19, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

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

---

### Release Notes

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

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

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

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

##### What's Changed

##### Changelog

- release(turborepo): 1.10.14 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5963
- Quiet a (mostly unaddressable) Sentry error by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5974
- feat(turbopack): emit raw image bytes for unsupported codec by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[vercel/turbo#5967
- sync deps by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5975
- feat(create-turbo): support package manager opt by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5979
- fix:(create-turbo) Review changes for package manager flag. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5980
- fix(Turborepo): Add typescript peer dep as dev dep by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5985
- fix(turborepo): Run outline fixes by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5966
- fix(turborepo): Make shim do complete package manager detection. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5986
- Link to Next.js issue link for Turbopack issues by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[vercel/turbo#5991
- add progress and top self time to convert trace tool by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5993
- fix: make `OutputWriter` references `Send` by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5931
- Add "toggleButton" to sidebar by
[@&#8203;mitesh-gupta](https://togithub.com/mitesh-gupta) in
[vercel/turbo#5968
- fix(turbopack-ecmascript): make free var replacements (compile time
defines) work for member expressions and allow JSON values by
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in
[vercel/turbo#6000
- Allow task log prefixing in Github Actions by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#5994
- libwebp-sys: 0.9.2 -> 0.9.3 by
[@&#8203;LeSuisse](https://togithub.com/LeSuisse) in
[vercel/turbo#5965
- fix: add a hack to prevent flaky test from blocking others by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6006
- Signal when signal handler is registered by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6010
- release(turborepo): 1.10.15-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6007
- Output logs docs update by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6005
- chore: remove silent flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6008
- fix: allow multiple threads to share hash tracker by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6012
- fix(docs): add nextjs 11 link by
[@&#8203;ragingwind](https://togithub.com/ragingwind) in
[vercel/turbo#5978
- chore: remove anyhow from task cache by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6013
- Fix typo in showcase.mdx by
[@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) in
[vercel/turbo#6014
- feature(turborepo): Port Run Summary by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5833
- fix(Turborepo): Pidlock owner now returns Result by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6025
- chore: quiet warnings on turborepo build by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6033
- feat(prune): add ability to specify scopes via argument instead of
flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski)
in
[vercel/turbo#6022
- feat: add method for piping child output to writer by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6031
- fix: prefixed writer no longer includes prefix length in bytes written
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6032
- feat(turborepo-auth): create new crate to handle authentication to
backend by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6027
- feat(Turborepo): Enable rust daemon by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5964
- feat(turborepo-auth): move sso_login implementation to new crate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6037
- release(turborepo): 1.10.15-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6042
- fix: Run outline bugs by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6041
- Turbopack: add support for an asset prefix (and basePath in Next.js)
by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[vercel/turbo#6036
- Revert "Turbopack: add support for an asset prefix (and basePath in N…
by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6044
- refactor TaskScopes to use an aggregation tree by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5992
- feat(turbo-ignore) add a --max-buffer option for dry runs that have
large outputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6052
- Tracing improvements by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6050
- fix: add new test so we have test coverage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6056
- Revert "Revert "Turbopack: add support for an asset prefix (and
basePath in N…
([#&#8203;6044](https://togithub.com/vercel/turbo/issues/6044))" by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[vercel/turbo#6049
- release(turborepo): 1.10.15-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6059
- Performance Improvements (1) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6051
- Performance Improvements (2) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6053
- Performance Improvements (4) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6055
- Update `swc_core` to `v0.83.28` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[vercel/turbo#6003
- add hash() to FileContent by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6062
- Handle errors from file hashing by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6060
- feat(turborepo-auth): move logout function to crate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6057
- fix(lockfiles) no longer error when parsing out of date pnpm lockfiles
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6048
- refactor(Turborepo): Extract LocalTurboState from RepoState by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6070
- Performance Improvements (1+2) review follow-up by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6061
- Performance improvements (3) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6045
- feat: hook up process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6043
- Add crate, move package json by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6077
- fix: Link test race condition by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6081
- fix: convert the lockfile path to a repo-root-relative path before use
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5958
- fix(turborepo): Unhide flags by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6021
- feat: add task cache save by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6071
- fix(Turborepo): copy yarn berry config files when running `turbo
prune` by [@&#8203;artberri](https://togithub.com/artberri) in
[vercel/turbo#6073
- chore: Added logging for filter code by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6087
- fix(turborepo): Don't recursively invoke self. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6091
- fix(turborepo): Process single-package independently. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6086
- fix(turbo-ignore): Quote the filter argument. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6096
- release(turborepo): 1.10.15-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6097
- feature(turborepo): Go Hashing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5851
- Revert "feature(turborepo): Go Hashing
([#&#8203;5851](https://togithub.com/vercel/turbo/issues/5851))" by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6101
- Set --single-package everywhere we can. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6102

##### New Contributors

- [@&#8203;Zertsov](https://togithub.com/Zertsov) made their first
contribution in
[vercel/turbo#5994
- [@&#8203;ragingwind](https://togithub.com/ragingwind) made their first
contribution in
[vercel/turbo#5978
- [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) made their
first contribution in
[vercel/turbo#6014
- [@&#8203;artberri](https://togithub.com/artberri) made their first
contribution in
[vercel/turbo#6073

**Full Changelog**:
vercel/turbo@v1.10.14...v1.10.15

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
sungik-choi pushed a commit to channel-io/bezier-react that referenced this pull request Oct 23, 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.14` ->
`1.10.16`](https://renovatebot.com/diffs/npm/turbo/1.10.14/1.10.16) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.14/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.14/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

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

##### What's Changed

##### Changelog

- release(turborepo): 1.10.15 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6107
- fix: set size for tar directory entries by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6100
- Reuse existing login tokens by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6034
- feat(turborepo): Go Implementation of Capnproto Hashing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6110
- Chunking Refactor Step 1 by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6104
- chore: fix clippy lints by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6112
- Chunking Refactor Step 2 by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[vercel/turbo#6120
- Performance Improvements (5) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6076
- Extract as_chunk into shared ChunkType trait by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[vercel/turbo#6123
- use temp files for auth login test by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6115
- Ensure process.env.TURBOPACK is always set by
[@&#8203;timneutkens](https://togithub.com/timneutkens) in
[vercel/turbo#6116
- feat(Turborepo): Drop turbo.json from inference calculation by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6079
- chore: Always build run stub by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6124
- Revert "Reuse existing login tokens" by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6133
- feat(turborepo): Layered Config by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5796
- feat: hook up task cache by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6117
- release(turborepo): 1.10.16-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6125
- chore: update pnpm by
[@&#8203;feedthejim](https://togithub.com/feedthejim) in
[vercel/turbo#6140
- Turbopack: detect `spawn(process.argv[0], ['-e', ...])` by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[vercel/turbo#6118
- Fix some clippy issues, ignore others by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[vercel/turbo#6129
- chore: add go workspace by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6111
- fix(docs): update storybook build command by
[@&#8203;steadily-worked](https://togithub.com/steadily-worked) in
[vercel/turbo#6134
- refactor(Turborepo): Move inference to repository crate by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6127
- Update docs and tests. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6028
- feat: make chrome tracing non-conditional and connect --profile flag
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6146
- chore: add schema to vercel.json configs by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6151
- remove unnecessary fields in vercel.json from docs by
[@&#8203;styfle](https://togithub.com/styfle) in
[vercel/turbo#6153
- chore: remove unnecessary vercel.json from docs by
[@&#8203;styfle](https://togithub.com/styfle) in
[vercel/turbo#6154
- Escape colons in globs before sending to the daemon by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6141
- chore(turborepo): Bump global cache key by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6156
- release(turborepo): 1.10.16-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6161
- fix: update global cache keys by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6164
- chore: run clippy by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6159
- fix: support non UTF-8 logs by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6167
- Chunking Refactoring by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6160
- Chunking Refactoring followup fixes by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6172
- chore: add a few diagnostic log lines for measuring time-to-execute by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6173
- chore: fail if chrometracing setup fails by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6168
- fix: log replay output by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6155
- chore(ci): Break up e2e tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6169
- Add support for FreeVarReference::Error by
[@&#8203;timneutkens](https://togithub.com/timneutkens) in
[vercel/turbo#6177
- chore: update turborepo team members for labeler by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6181
- chore: add more instrumentation by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6158
- Auth and API Client refactor by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6150
- Don't open browser when in test mode by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6187
- fix chunk loading in build runtime by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6180
- Deduplicate referenced_output_assets by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[vercel/turbo#6191
- build: Update `swc_core` to `v0.86.1` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[vercel/turbo#6171
- fix(turborepo): Size comes from the thing being read. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6092
- Resistance is futile; change is inevitable (twitter -> X) by
[@&#8203;jakeleventhal](https://togithub.com/jakeleventhal) in
[vercel/turbo#6192
- chore: re-enable clippy lints and fix new lint errors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6185
- feat: port task execution env restriction by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6184
- chore: fix new clippy lints in auth crate by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6193
- Move OutputAssets length check into new method by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[vercel/turbo#6194
- Fix filewatching setup cookie path by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6183
- fix(postcss): fallback postcss config locations by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[vercel/turbo#6119
- chore: remove debug logging for file hashes by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6196
- chore: Update CODEOWNERS by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6198
- fix: log replay message should say replay by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6199
- feat: add pprof flamegraphs behind a feature flag by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6147
- chore(lockfiles) avoid hand written reflection by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6143
- feat(Turborepo): Initial run preamble by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6205
- fix(Turborepo): Drop root package removal by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6208
- chore: avoid allocations during log capture and replay by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6189
- fix double self time reporting by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6179
- chore: fix old clippy warnings by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6204
- allow to show span count by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6135

##### New Contributors

- [@&#8203;feedthejim](https://togithub.com/feedthejim) made their first
contribution in
[vercel/turbo#6140
- [@&#8203;steadily-worked](https://togithub.com/steadily-worked) made
their first contribution in
[vercel/turbo#6134
- [@&#8203;jakeleventhal](https://togithub.com/jakeleventhal) made their
first contribution in
[vercel/turbo#6192

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

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

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

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

##### What's Changed

##### Changelog

- release(turborepo): 1.10.14 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5963
- Quiet a (mostly unaddressable) Sentry error by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5974
- feat(turbopack): emit raw image bytes for unsupported codec by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[vercel/turbo#5967
- sync deps by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5975
- feat(create-turbo): support package manager opt by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5979
- fix:(create-turbo) Review changes for package manager flag. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5980
- fix(Turborepo): Add typescript peer dep as dev dep by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5985
- fix(turborepo): Run outline fixes by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5966
- fix(turborepo): Make shim do complete package manager detection. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5986
- Link to Next.js issue link for Turbopack issues by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[vercel/turbo#5991
- add progress and top self time to convert trace tool by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5993
- fix: make `OutputWriter` references `Send` by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5931
- Add "toggleButton" to sidebar by
[@&#8203;mitesh-gupta](https://togithub.com/mitesh-gupta) in
[vercel/turbo#5968
- fix(turbopack-ecmascript): make free var replacements (compile time
defines) work for member expressions and allow JSON values by
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in
[vercel/turbo#6000
- Allow task log prefixing in Github Actions by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#5994
- libwebp-sys: 0.9.2 -> 0.9.3 by
[@&#8203;LeSuisse](https://togithub.com/LeSuisse) in
[vercel/turbo#5965
- fix: add a hack to prevent flaky test from blocking others by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6006
- Signal when signal handler is registered by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6010
- release(turborepo): 1.10.15-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6007
- Output logs docs update by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6005
- chore: remove silent flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6008
- fix: allow multiple threads to share hash tracker by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6012
- fix(docs): add nextjs 11 link by
[@&#8203;ragingwind](https://togithub.com/ragingwind) in
[vercel/turbo#5978
- chore: remove anyhow from task cache by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6013
- Fix typo in showcase.mdx by
[@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) in
[vercel/turbo#6014
- feature(turborepo): Port Run Summary by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5833
- fix(Turborepo): Pidlock owner now returns Result by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6025
- chore: quiet warnings on turborepo build by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6033
- feat(prune): add ability to specify scopes via argument instead of
flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski)
in
[vercel/turbo#6022
- feat: add method for piping child output to writer by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6031
- fix: prefixed writer no longer includes prefix length in bytes written
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6032
- feat(turborepo-auth): create new crate to handle authentication to
backend by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6027
- feat(Turborepo): Enable rust daemon by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5964
- feat(turborepo-auth): move sso_login implementation to new crate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6037
- release(turborepo): 1.10.15-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6042
- fix: Run outline bugs by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6041
- Turbopack: add support for an asset prefix (and basePath in Next.js)
by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[vercel/turbo#6036
- Revert "Turbopack: add support for an asset prefix (and basePath in N…
by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6044
- refactor TaskScopes to use an aggregation tree by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5992
- feat(turbo-ignore) add a --max-buffer option for dry runs that have
large outputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6052
- Tracing improvements by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6050
- fix: add new test so we have test coverage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6056
- Revert "Revert "Turbopack: add support for an asset prefix (and
basePath in N…
([#&#8203;6044](https://togithub.com/vercel/turbo/issues/6044))" by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[vercel/turbo#6049
- release(turborepo): 1.10.15-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6059
- Performance Improvements (1) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6051
- Performance Improvements (2) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6053
- Performance Improvements (4) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6055
- Update `swc_core` to `v0.83.28` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[vercel/turbo#6003
- add hash() to FileContent by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6062
- Handle errors from file hashing by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6060
- feat(turborepo-auth): move logout function to crate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6057
- fix(lockfiles) no longer error when parsing out of date pnpm lockfiles
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6048
- refactor(Turborepo): Extract LocalTurboState from RepoState by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6070
- Performance Improvements (1+2) review follow-up by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6061
- Performance improvements (3) by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6045
- feat: hook up process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6043
- Add crate, move package json by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6077
- fix: Link test race condition by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6081
- fix: convert the lockfile path to a repo-root-relative path before use
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5958
- fix(turborepo): Unhide flags by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6021
- feat: add task cache save by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6071
- fix(Turborepo): copy yarn berry config files when running `turbo
prune` by [@&#8203;artberri](https://togithub.com/artberri) in
[vercel/turbo#6073
- chore: Added logging for filter code by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6087
- fix(turborepo): Don't recursively invoke self. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6091
- fix(turborepo): Process single-package independently. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6086
- fix(turbo-ignore): Quote the filter argument. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6096
- release(turborepo): 1.10.15-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6097
- feature(turborepo): Go Hashing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5851
- Revert "feature(turborepo): Go Hashing
([#&#8203;5851](https://togithub.com/vercel/turbo/issues/5851))" by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6101
- Set --single-package everywhere we can. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#6102

##### New Contributors

- [@&#8203;Zertsov](https://togithub.com/Zertsov) made their first
contribution in
[vercel/turbo#5994
- [@&#8203;ragingwind](https://togithub.com/ragingwind) made their first
contribution in
[vercel/turbo#5978
- [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) made their
first contribution in
[vercel/turbo#6014
- [@&#8203;artberri](https://togithub.com/artberri) made their first
contribution in
[vercel/turbo#6073

**Full Changelog**:
vercel/turbo@v1.10.14...v1.10.15

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "on Monday after 10am before 7pm" in
timezone Asia/Seoul, 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/channel-io/bezier-react).

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

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

---

### Release Notes

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

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

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

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

##### What's Changed

##### Changelog

- release(turborepo): 1.10.15 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/6107](https://togithub.com/vercel/turbo/pull/6107)
- fix: set size for tar directory entries by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6100](https://togithub.com/vercel/turbo/pull/6100)
- Reuse existing login tokens by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[https://github.com/vercel/turbo/pull/6034](https://togithub.com/vercel/turbo/pull/6034)
- feat(turborepo): Go Implementation of Capnproto Hashing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6110](https://togithub.com/vercel/turbo/pull/6110)
- Chunking Refactor Step 1 by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6104](https://togithub.com/vercel/turbo/pull/6104)
- chore: fix clippy lints by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6112](https://togithub.com/vercel/turbo/pull/6112)
- Chunking Refactor Step 2 by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/6120](https://togithub.com/vercel/turbo/pull/6120)
- Performance Improvements (5) by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6076](https://togithub.com/vercel/turbo/pull/6076)
- Extract as_chunk into shared ChunkType trait by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/6123](https://togithub.com/vercel/turbo/pull/6123)
- use temp files for auth login test by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[https://github.com/vercel/turbo/pull/6115](https://togithub.com/vercel/turbo/pull/6115)
- Ensure process.env.TURBOPACK is always set by
[@&#8203;timneutkens](https://togithub.com/timneutkens) in
[https://github.com/vercel/turbo/pull/6116](https://togithub.com/vercel/turbo/pull/6116)
- feat(Turborepo): Drop turbo.json from inference calculation by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6079](https://togithub.com/vercel/turbo/pull/6079)
- chore: Always build run stub by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6124](https://togithub.com/vercel/turbo/pull/6124)
- Revert "Reuse existing login tokens" by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/6133](https://togithub.com/vercel/turbo/pull/6133)
- feat(turborepo): Layered Config by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5796](https://togithub.com/vercel/turbo/pull/5796)
- feat: hook up task cache by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6117](https://togithub.com/vercel/turbo/pull/6117)
- release(turborepo): 1.10.16-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/6125](https://togithub.com/vercel/turbo/pull/6125)
- chore: update pnpm by
[@&#8203;feedthejim](https://togithub.com/feedthejim) in
[https://github.com/vercel/turbo/pull/6140](https://togithub.com/vercel/turbo/pull/6140)
- Turbopack: detect `spawn(process.argv[0], ['-e', ...])` by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/6118](https://togithub.com/vercel/turbo/pull/6118)
- Fix some clippy issues, ignore others by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/6129](https://togithub.com/vercel/turbo/pull/6129)
- chore: add go workspace by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6111](https://togithub.com/vercel/turbo/pull/6111)
- fix(docs): update storybook build command by
[@&#8203;steadily-worked](https://togithub.com/steadily-worked) in
[https://github.com/vercel/turbo/pull/6134](https://togithub.com/vercel/turbo/pull/6134)
- refactor(Turborepo): Move inference to repository crate by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6127](https://togithub.com/vercel/turbo/pull/6127)
- Update docs and tests. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/6028](https://togithub.com/vercel/turbo/pull/6028)
- feat: make chrome tracing non-conditional and connect --profile flag
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6146](https://togithub.com/vercel/turbo/pull/6146)
- chore: add schema to vercel.json configs by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6151](https://togithub.com/vercel/turbo/pull/6151)
- remove unnecessary fields in vercel.json from docs by
[@&#8203;styfle](https://togithub.com/styfle) in
[https://github.com/vercel/turbo/pull/6153](https://togithub.com/vercel/turbo/pull/6153)
- chore: remove unnecessary vercel.json from docs by
[@&#8203;styfle](https://togithub.com/styfle) in
[https://github.com/vercel/turbo/pull/6154](https://togithub.com/vercel/turbo/pull/6154)
- Escape colons in globs before sending to the daemon by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6141](https://togithub.com/vercel/turbo/pull/6141)
- chore(turborepo): Bump global cache key by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6156](https://togithub.com/vercel/turbo/pull/6156)
- release(turborepo): 1.10.16-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/6161](https://togithub.com/vercel/turbo/pull/6161)
- fix: update global cache keys by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6164](https://togithub.com/vercel/turbo/pull/6164)
- chore: run clippy by [@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6159](https://togithub.com/vercel/turbo/pull/6159)
- fix: support non UTF-8 logs by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6167](https://togithub.com/vercel/turbo/pull/6167)
- Chunking Refactoring by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6160](https://togithub.com/vercel/turbo/pull/6160)
- Chunking Refactoring followup fixes by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6172](https://togithub.com/vercel/turbo/pull/6172)
- chore: add a few diagnostic log lines for measuring time-to-execute by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6173](https://togithub.com/vercel/turbo/pull/6173)
- chore: fail if chrometracing setup fails by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6168](https://togithub.com/vercel/turbo/pull/6168)
- fix: log replay output by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6155](https://togithub.com/vercel/turbo/pull/6155)
- chore(ci): Break up e2e tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6169](https://togithub.com/vercel/turbo/pull/6169)
- Add support for FreeVarReference::Error by
[@&#8203;timneutkens](https://togithub.com/timneutkens) in
[https://github.com/vercel/turbo/pull/6177](https://togithub.com/vercel/turbo/pull/6177)
- chore: update turborepo team members for labeler by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6181](https://togithub.com/vercel/turbo/pull/6181)
- chore: add more instrumentation by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6158](https://togithub.com/vercel/turbo/pull/6158)
- Auth and API Client refactor by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[https://github.com/vercel/turbo/pull/6150](https://togithub.com/vercel/turbo/pull/6150)
- Don't open browser when in test mode by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[https://github.com/vercel/turbo/pull/6187](https://togithub.com/vercel/turbo/pull/6187)
- fix chunk loading in build runtime by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6180](https://togithub.com/vercel/turbo/pull/6180)
- Deduplicate referenced_output_assets by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/6191](https://togithub.com/vercel/turbo/pull/6191)
- build: Update `swc_core` to `v0.86.1` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[https://github.com/vercel/turbo/pull/6171](https://togithub.com/vercel/turbo/pull/6171)
- fix(turborepo): Size comes from the thing being read. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/6092](https://togithub.com/vercel/turbo/pull/6092)
- Resistance is futile; change is inevitable (twitter -> X) by
[@&#8203;jakeleventhal](https://togithub.com/jakeleventhal) in
[https://github.com/vercel/turbo/pull/6192](https://togithub.com/vercel/turbo/pull/6192)
- chore: re-enable clippy lints and fix new lint errors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6185](https://togithub.com/vercel/turbo/pull/6185)
- feat: port task execution env restriction by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6184](https://togithub.com/vercel/turbo/pull/6184)
- chore: fix new clippy lints in auth crate by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6193](https://togithub.com/vercel/turbo/pull/6193)
- Move OutputAssets length check into new method by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/6194](https://togithub.com/vercel/turbo/pull/6194)
- Fix filewatching setup cookie path by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6183](https://togithub.com/vercel/turbo/pull/6183)
- fix(postcss): fallback postcss config locations by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6119](https://togithub.com/vercel/turbo/pull/6119)
- chore: remove debug logging for file hashes by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6196](https://togithub.com/vercel/turbo/pull/6196)
- chore: Update CODEOWNERS by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6198](https://togithub.com/vercel/turbo/pull/6198)
- fix: log replay message should say replay by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6199](https://togithub.com/vercel/turbo/pull/6199)
- feat: add pprof flamegraphs behind a feature flag by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6147](https://togithub.com/vercel/turbo/pull/6147)
- chore(lockfiles) avoid hand written reflection by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6143](https://togithub.com/vercel/turbo/pull/6143)
- feat(Turborepo): Initial run preamble by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6205](https://togithub.com/vercel/turbo/pull/6205)
- fix(Turborepo): Drop root package removal by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6208](https://togithub.com/vercel/turbo/pull/6208)
- chore: avoid allocations during log capture and replay by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6189](https://togithub.com/vercel/turbo/pull/6189)
- fix double self time reporting by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6179](https://togithub.com/vercel/turbo/pull/6179)
- chore: fix old clippy warnings by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6204](https://togithub.com/vercel/turbo/pull/6204)
- allow to show span count by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6135](https://togithub.com/vercel/turbo/pull/6135)

##### New Contributors

- [@&#8203;feedthejim](https://togithub.com/feedthejim) made their first
contribution in
[https://github.com/vercel/turbo/pull/6140](https://togithub.com/vercel/turbo/pull/6140)
- [@&#8203;steadily-worked](https://togithub.com/steadily-worked) made
their first contribution in
[https://github.com/vercel/turbo/pull/6134](https://togithub.com/vercel/turbo/pull/6134)
- [@&#8203;jakeleventhal](https://togithub.com/jakeleventhal) made their
first contribution in
[https://github.com/vercel/turbo/pull/6192](https://togithub.com/vercel/turbo/pull/6192)

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

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

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

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

##### What's Changed

##### Changelog

- release(turborepo): 1.10.14 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5963](https://togithub.com/vercel/turbo/pull/5963)
- Quiet a (mostly unaddressable) Sentry error by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5974](https://togithub.com/vercel/turbo/pull/5974)
- feat(turbopack): emit raw image bytes for unsupported codec by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/5967](https://togithub.com/vercel/turbo/pull/5967)
- sync deps by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5975](https://togithub.com/vercel/turbo/pull/5975)
- feat(create-turbo): support package manager opt by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5979](https://togithub.com/vercel/turbo/pull/5979)
- fix:(create-turbo) Review changes for package manager flag. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5980](https://togithub.com/vercel/turbo/pull/5980)
- fix(Turborepo): Add typescript peer dep as dev dep by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5985](https://togithub.com/vercel/turbo/pull/5985)
- fix(turborepo): Run outline fixes by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5966](https://togithub.com/vercel/turbo/pull/5966)
- fix(turborepo): Make shim do complete package manager detection. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5986](https://togithub.com/vercel/turbo/pull/5986)
- Link to Next.js issue link for Turbopack issues by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[https://github.com/vercel/turbo/pull/5991](https://togithub.com/vercel/turbo/pull/5991)
- add progress and top self time to convert trace tool by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5993](https://togithub.com/vercel/turbo/pull/5993)
- fix: make `OutputWriter` references `Send` by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5931](https://togithub.com/vercel/turbo/pull/5931)
- Add "toggleButton" to sidebar by
[@&#8203;mitesh-gupta](https://togithub.com/mitesh-gupta) in
[https://github.com/vercel/turbo/pull/5968](https://togithub.com/vercel/turbo/pull/5968)
- fix(turbopack-ecmascript): make free var replacements (compile time
defines) work for member expressions and allow JSON values by
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in
[https://github.com/vercel/turbo/pull/6000](https://togithub.com/vercel/turbo/pull/6000)
- Allow task log prefixing in Github Actions by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[https://github.com/vercel/turbo/pull/5994](https://togithub.com/vercel/turbo/pull/5994)
- libwebp-sys: 0.9.2 -> 0.9.3 by
[@&#8203;LeSuisse](https://togithub.com/LeSuisse) in
[https://github.com/vercel/turbo/pull/5965](https://togithub.com/vercel/turbo/pull/5965)
- fix: add a hack to prevent flaky test from blocking others by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6006](https://togithub.com/vercel/turbo/pull/6006)
- Signal when signal handler is registered by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6010](https://togithub.com/vercel/turbo/pull/6010)
- release(turborepo): 1.10.15-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/6007](https://togithub.com/vercel/turbo/pull/6007)
- Output logs docs update by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6005](https://togithub.com/vercel/turbo/pull/6005)
- chore: remove silent flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6008](https://togithub.com/vercel/turbo/pull/6008)
- fix: allow multiple threads to share hash tracker by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6012](https://togithub.com/vercel/turbo/pull/6012)
- fix(docs): add nextjs 11 link by
[@&#8203;ragingwind](https://togithub.com/ragingwind) in
[https://github.com/vercel/turbo/pull/5978](https://togithub.com/vercel/turbo/pull/5978)
- chore: remove anyhow from task cache by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6013](https://togithub.com/vercel/turbo/pull/6013)
- Fix typo in showcase.mdx by
[@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) in
[https://github.com/vercel/turbo/pull/6014](https://togithub.com/vercel/turbo/pull/6014)
- feature(turborepo): Port Run Summary by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5833](https://togithub.com/vercel/turbo/pull/5833)
- fix(Turborepo): Pidlock owner now returns Result by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6025](https://togithub.com/vercel/turbo/pull/6025)
- chore: quiet warnings on turborepo build by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6033](https://togithub.com/vercel/turbo/pull/6033)
- feat(prune): add ability to specify scopes via argument instead of
flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski)
in
[https://github.com/vercel/turbo/pull/6022](https://togithub.com/vercel/turbo/pull/6022)
- feat: add method for piping child output to writer by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6031](https://togithub.com/vercel/turbo/pull/6031)
- fix: prefixed writer no longer includes prefix length in bytes written
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6032](https://togithub.com/vercel/turbo/pull/6032)
- feat(turborepo-auth): create new crate to handle authentication to
backend by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6027](https://togithub.com/vercel/turbo/pull/6027)
- feat(Turborepo): Enable rust daemon by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5964](https://togithub.com/vercel/turbo/pull/5964)
- feat(turborepo-auth): move sso_login implementation to new crate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6037](https://togithub.com/vercel/turbo/pull/6037)
- release(turborepo): 1.10.15-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/6042](https://togithub.com/vercel/turbo/pull/6042)
- fix: Run outline bugs by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6041](https://togithub.com/vercel/turbo/pull/6041)
- Turbopack: add support for an asset prefix (and basePath in Next.js)
by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/6036](https://togithub.com/vercel/turbo/pull/6036)
- Revert "Turbopack: add support for an asset prefix (and basePath in N…
by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6044](https://togithub.com/vercel/turbo/pull/6044)
- refactor TaskScopes to use an aggregation tree by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5992](https://togithub.com/vercel/turbo/pull/5992)
- feat(turbo-ignore) add a --max-buffer option for dry runs that have
large outputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6052](https://togithub.com/vercel/turbo/pull/6052)
- Tracing improvements by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6050](https://togithub.com/vercel/turbo/pull/6050)
- fix: add new test so we have test coverage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6056](https://togithub.com/vercel/turbo/pull/6056)
- Revert "Revert "Turbopack: add support for an asset prefix (and
basePath in N…
([#&#8203;6044](https://togithub.com/vercel/turbo/issues/6044))" by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/6049](https://togithub.com/vercel/turbo/pull/6049)
- release(turborepo): 1.10.15-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/6059](https://togithub.com/vercel/turbo/pull/6059)
- Performance Improvements (1) by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6051](https://togithub.com/vercel/turbo/pull/6051)
- Performance Improvements (2) by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6053](https://togithub.com/vercel/turbo/pull/6053)
- Performance Improvements (4) by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6055](https://togithub.com/vercel/turbo/pull/6055)
- Update `swc_core` to `v0.83.28` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[https://github.com/vercel/turbo/pull/6003](https://togithub.com/vercel/turbo/pull/6003)
- add hash() to FileContent by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6062](https://togithub.com/vercel/turbo/pull/6062)
- Handle errors from file hashing by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6060](https://togithub.com/vercel/turbo/pull/6060)
- feat(turborepo-auth): move logout function to crate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6057](https://togithub.com/vercel/turbo/pull/6057)
- fix(lockfiles) no longer error when parsing out of date pnpm lockfiles
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6048](https://togithub.com/vercel/turbo/pull/6048)
- refactor(Turborepo): Extract LocalTurboState from RepoState by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6070](https://togithub.com/vercel/turbo/pull/6070)
- Performance Improvements (1+2) review follow-up by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6061](https://togithub.com/vercel/turbo/pull/6061)
- Performance improvements (3) by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6045](https://togithub.com/vercel/turbo/pull/6045)
- feat: hook up process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6043](https://togithub.com/vercel/turbo/pull/6043)
- Add crate, move package json by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6077](https://togithub.com/vercel/turbo/pull/6077)
- fix: Link test race condition by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6081](https://togithub.com/vercel/turbo/pull/6081)
- fix: convert the lockfile path to a repo-root-relative path before use
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5958](https://togithub.com/vercel/turbo/pull/5958)
- fix(turborepo): Unhide flags by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/6021](https://togithub.com/vercel/turbo/pull/6021)
- feat: add task cache save by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6071](https://togithub.com/vercel/turbo/pull/6071)
- fix(Turborepo): copy yarn berry config files when running `turbo
prune` by [@&#8203;artberri](https://togithub.com/artberri) in
[https://github.com/vercel/turbo/pull/6073](https://togithub.com/vercel/turbo/pull/6073)
- chore: Added logging for filter code by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6087](https://togithub.com/vercel/turbo/pull/6087)
- fix(turborepo): Don't recursively invoke self. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/6091](https://togithub.com/vercel/turbo/pull/6091)
- fix(turborepo): Process single-package independently. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/6086](https://togithub.com/vercel/turbo/pull/6086)
- fix(turbo-ignore): Quote the filter argument. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/6096](https://togithub.com/vercel/turbo/pull/6096)
- release(turborepo): 1.10.15-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/6097](https://togithub.com/vercel/turbo/pull/6097)
- feature(turborepo): Go Hashing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5851](https://togithub.com/vercel/turbo/pull/5851)
- Revert "feature(turborepo): Go Hashing
([#&#8203;5851](https://togithub.com/vercel/turbo/issues/5851))" by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6101](https://togithub.com/vercel/turbo/pull/6101)
- Set --single-package everywhere we can. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/6102](https://togithub.com/vercel/turbo/pull/6102)

##### New Contributors

- [@&#8203;Zertsov](https://togithub.com/Zertsov) made their first
contribution in
[https://github.com/vercel/turbo/pull/5994](https://togithub.com/vercel/turbo/pull/5994)
- [@&#8203;ragingwind](https://togithub.com/ragingwind) made their first
contribution in
[https://github.com/vercel/turbo/pull/5978](https://togithub.com/vercel/turbo/pull/5978)
- [@&#8203;LukaszKokot](https://togithub.com/LukaszKokot) made their
first contribution in
[https://github.com/vercel/turbo/pull/6014](https://togithub.com/vercel/turbo/pull/6014)
- [@&#8203;artberri](https://togithub.com/artberri) made their first
contribution in
[https://github.com/vercel/turbo/pull/6073](https://togithub.com/vercel/turbo/pull/6073)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.14...v1.10.15

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

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

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

#### What's Changed

##### Changelog

- Add support to integration tests for experimental rust codepath by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5748](https://togithub.com/vercel/turbo/pull/5748)
- chore: require lockfile implementations to be threadsafe by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5781](https://togithub.com/vercel/turbo/pull/5781)
- release(turborepo): 1.10.13 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5788](https://togithub.com/vercel/turbo/pull/5788)
- feat(turbo-ignore): add better error message by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5790](https://togithub.com/vercel/turbo/pull/5790)
- test: verify we can walk DAGs with multiple roots by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5770](https://togithub.com/vercel/turbo/pull/5770)
- add filewatching tests to document behaviour regarding file add/delete
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5580](https://togithub.com/vercel/turbo/pull/5580)
- add evaluatables to chunk list ident by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5785](https://togithub.com/vercel/turbo/pull/5785)
- Tracing improvements by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5783](https://togithub.com/vercel/turbo/pull/5783)
- Generic types over Vcs by
[@&#8203;alexkirsz](https://togithub.com/alexkirsz) in
[https://github.com/vercel/turbo/pull/5738](https://togithub.com/vercel/turbo/pull/5738)
- fix: snapshot test path canonicalization by
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in
[https://github.com/vercel/turbo/pull/5795](https://togithub.com/vercel/turbo/pull/5795)
- fix "any" context condition implementation by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5794](https://togithub.com/vercel/turbo/pull/5794)
- feat(examples): update cra lint by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5799](https://togithub.com/vercel/turbo/pull/5799)
- feat: port github action detection by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5792](https://togithub.com/vercel/turbo/pull/5792)
- add middleware entry type by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5800](https://togithub.com/vercel/turbo/pull/5800)
- fix: unify go rust error formatting by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5798](https://togithub.com/vercel/turbo/pull/5798)
- fix: remove panic from task graph validation by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5789](https://togithub.com/vercel/turbo/pull/5789)
- feat: port task graph execution by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5791](https://togithub.com/vercel/turbo/pull/5791)
- fix(turborepo): Better unlink Output by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5764](https://togithub.com/vercel/turbo/pull/5764)
- perform invalidation directly on writes by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5786](https://togithub.com/vercel/turbo/pull/5786)
- Automatically derive ValueDefault for primitive value types by
[@&#8203;alexkirsz](https://togithub.com/alexkirsz) in
[https://github.com/vercel/turbo/pull/5793](https://togithub.com/vercel/turbo/pull/5793)
- fix(lint): add node env by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5805](https://togithub.com/vercel/turbo/pull/5805)
- fix: persistent task concurrency check by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5806](https://togithub.com/vercel/turbo/pull/5806)
- feat: show all persistent task validation errors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5807](https://togithub.com/vercel/turbo/pull/5807)
- docs: update webpack docs to reflect latest next.js api by
[@&#8203;willwill96](https://togithub.com/willwill96) in
[https://github.com/vercel/turbo/pull/5680](https://togithub.com/vercel/turbo/pull/5680)
- feat(turborepo): Use new URL scheme. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5803](https://togithub.com/vercel/turbo/pull/5803)
- fix(turborepo): API naming and dep graph by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5819](https://togithub.com/vercel/turbo/pull/5819)
- make swc comments immutable by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5784](https://togithub.com/vercel/turbo/pull/5784)
- avoid unnessecary indirection in async modules by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5627](https://togithub.com/vercel/turbo/pull/5627)
- fix(lint): set vscode config for pnpm examples by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5826](https://togithub.com/vercel/turbo/pull/5826)
- feat(docs): update lint in handbook by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5812](https://togithub.com/vercel/turbo/pull/5812)
- Update HMR for next-api by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/5814](https://togithub.com/vercel/turbo/pull/5814)
- avoid cloning a large list of task ids by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5821](https://togithub.com/vercel/turbo/pull/5821)
- chore(docs): update lint callout by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5831](https://togithub.com/vercel/turbo/pull/5831)
- chore(lint): update
[@&#8203;vercel/style-guide](https://togithub.com/vercel/style-guide) to
latest by [@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5832](https://togithub.com/vercel/turbo/pull/5832)
- feat(examples): upgrade
[@&#8203;vercel/style-guide](https://togithub.com/vercel/style-guide) to
5 by [@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5834](https://togithub.com/vercel/turbo/pull/5834)
- Update `swc_core` to `v0.82.4` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[https://github.com/vercel/turbo/pull/5820](https://togithub.com/vercel/turbo/pull/5820)
- chore: minor task cache changes by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5838](https://togithub.com/vercel/turbo/pull/5838)
- chore: remove fake root topological task nodes by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5828](https://togithub.com/vercel/turbo/pull/5828)
- feat: port task execution summary by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5825](https://togithub.com/vercel/turbo/pull/5825)
- Update `swc_core` to `v0.82.10` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[https://github.com/vercel/turbo/pull/5853](https://togithub.com/vercel/turbo/pull/5853)
- Stub out module.hot.check for next-api by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/5855](https://togithub.com/vercel/turbo/pull/5855)
- feat(Turborepo): Create a filewatching crate by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5772](https://togithub.com/vercel/turbo/pull/5772)
- chore: make color selector usable with prefix ui by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5863](https://togithub.com/vercel/turbo/pull/5863)
- feat(example): update tailwind starter template by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5856](https://togithub.com/vercel/turbo/pull/5856)
- chore: add full auth into http client by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5857](https://togithub.com/vercel/turbo/pull/5857)
- feature(turbo): Global Hash by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5568](https://togithub.com/vercel/turbo/pull/5568)
- fix(lint): remove unused import by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5883](https://togithub.com/vercel/turbo/pull/5883)
- feat(example): update basic starter template by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5880](https://togithub.com/vercel/turbo/pull/5880)
- feat(docs): update bundle format recommendation by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5870](https://togithub.com/vercel/turbo/pull/5870)
- fix: avoid panic during task cache construction by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5882](https://togithub.com/vercel/turbo/pull/5882)
- Add `Send` bound to `T` in `Vc<T>` to make type error less cryptic by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[https://github.com/vercel/turbo/pull/5871](https://togithub.com/vercel/turbo/pull/5871)
- feat(Turborepo): add filesystem cookies on top of filewatching by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5858](https://togithub.com/vercel/turbo/pull/5858)
- Turbopack: Remove `turbo_tasks::unit()` by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5860](https://togithub.com/vercel/turbo/pull/5860)
- Turbopack Experimental: Fix source maps in HMR by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5852](https://togithub.com/vercel/turbo/pull/5852)
- feat(examples): update design-system by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5884](https://togithub.com/vercel/turbo/pull/5884)
- fix: use existing ui instead of constructing a new one by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5886](https://togithub.com/vercel/turbo/pull/5886)
- feat: support analysing ternary expressions by
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in
[https://github.com/vercel/turbo/pull/5881](https://togithub.com/vercel/turbo/pull/5881)
- Fix clippy warnings / errors in filewatching code by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5891](https://togithub.com/vercel/turbo/pull/5891)
- feat: connect task cache with visitor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5889](https://togithub.com/vercel/turbo/pull/5889)
- Update pnpm to 8.7.1 by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5861](https://togithub.com/vercel/turbo/pull/5861)
- fix: missing autoprefixer package in with-tailwind example by
[@&#8203;boompikachu](https://togithub.com/boompikachu) in
[https://github.com/vercel/turbo/pull/5893](https://togithub.com/vercel/turbo/pull/5893)
- release(turborepo): 1.10.14-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5903](https://togithub.com/vercel/turbo/pull/5903)
- fix: deny clippy errors in filewatching crate by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5895](https://togithub.com/vercel/turbo/pull/5895)
- fix(Turborepo): Filter ancestor events before manual recursive watch
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5896](https://togithub.com/vercel/turbo/pull/5896)
- feat(create-turbo): better error when GH is down by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5900](https://togithub.com/vercel/turbo/pull/5900)
- feat: port output control by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5906](https://togithub.com/vercel/turbo/pull/5906)
- feat(examples): update kitchen-sink by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5892](https://togithub.com/vercel/turbo/pull/5892)
- Revert swc versions to one that doesn't use lightningcss by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5911](https://togithub.com/vercel/turbo/pull/5911)
- feature(turbo): Task Hash by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5716](https://togithub.com/vercel/turbo/pull/5716)
- fix(with-tailwind): support .mjs import extension by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5912](https://togithub.com/vercel/turbo/pull/5912)
- fix(create-turbo): add before commiting by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5914](https://togithub.com/vercel/turbo/pull/5914)
- fix(tests): kitchen-sink updates by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5924](https://togithub.com/vercel/turbo/pull/5924)
- feat(turbo-ignore): fix args and update fallback by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5910](https://togithub.com/vercel/turbo/pull/5910)
- feat(examples): update gatsby by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5925](https://togithub.com/vercel/turbo/pull/5925)
- feat(Turborepo): Implement glob watching by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5862](https://togithub.com/vercel/turbo/pull/5862)
- release(turborepo): 1.10.14-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5929](https://togithub.com/vercel/turbo/pull/5929)
- chore: add error to prefixed UI by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5915](https://togithub.com/vercel/turbo/pull/5915)
- chore: purge unused Go code by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5917](https://togithub.com/vercel/turbo/pull/5917)
- fix: add DOM lib to react-library tsconfig by
[@&#8203;ekafyi](https://togithub.com/ekafyi) in
[https://github.com/vercel/turbo/pull/5111](https://togithub.com/vercel/turbo/pull/5111)
- fix(examples-tests): correct gatsby prysk test by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5935](https://togithub.com/vercel/turbo/pull/5935)
- feat: use prefixed ui in task graph visitor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5930](https://togithub.com/vercel/turbo/pull/5930)
- Add "scroll to top" option in theme.config.tsx by
[@&#8203;mitesh-gupta](https://togithub.com/mitesh-gupta) in
[https://github.com/vercel/turbo/pull/5907](https://togithub.com/vercel/turbo/pull/5907)
- changed LandingPage component clipping title by
[@&#8203;Firgrep](https://togithub.com/Firgrep) in
[https://github.com/vercel/turbo/pull/5937](https://togithub.com/vercel/turbo/pull/5937)
- Child process manager by [@&#8203;arlyon](https://togithub.com/arlyon)
in
[https://github.com/vercel/turbo/pull/5849](https://togithub.com/vercel/turbo/pull/5849)
- Revert "Child process manager" by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5939](https://togithub.com/vercel/turbo/pull/5939)
- Update http mock and clap by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5936](https://togithub.com/vercel/turbo/pull/5936)
- Update logos. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5941](https://togithub.com/vercel/turbo/pull/5941)
- Rearranging style-guide imports by
[@&#8203;imCorfitz](https://togithub.com/imCorfitz) in
[https://github.com/vercel/turbo/pull/5942](https://togithub.com/vercel/turbo/pull/5942)
- CSS HMR fixes by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5948](https://togithub.com/vercel/turbo/pull/5948)
- Reduce the number of tasks for better performance by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5950](https://togithub.com/vercel/turbo/pull/5950)
- improve error handling of developer workflow tool by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5952](https://togithub.com/vercel/turbo/pull/5952)
- fix(Turborepo): Update integration test for bad flag by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5946](https://togithub.com/vercel/turbo/pull/5946)
- Update ContextCondition::InPath to match exact path by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/5938](https://togithub.com/vercel/turbo/pull/5938)
- fix(workspaces): glob fix and refactor correction by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5951](https://togithub.com/vercel/turbo/pull/5951)
- Wire filewatching to daemon server by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5916](https://togithub.com/vercel/turbo/pull/5916)
- Revert "Reduce the number of tasks for better performance" by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5953](https://togithub.com/vercel/turbo/pull/5953)
- feat(turborepo): support Bun by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5934](https://togithub.com/vercel/turbo/pull/5934)
- feat(create-turbo): support bun (beta) by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5943](https://togithub.com/vercel/turbo/pull/5943)
- Use `is_inside_or_equal_ref` in `ContextCondition::InPath` by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/5954](https://togithub.com/vercel/turbo/pull/5954)
- release(turborepo): 1.10.14-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5956](https://togithub.com/vercel/turbo/pull/5956)
- feat(turborepo): add basic child process manager package by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5940](https://togithub.com/vercel/turbo/pull/5940)
- Update `swc_core` to `v0.83.12` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[https://github.com/vercel/turbo/pull/5923](https://togithub.com/vercel/turbo/pull/5923)
- reduce number of task in async_module by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5959](https://togithub.com/vercel/turbo/pull/5959)
- reduce unneccessary fs tasks by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5960](https://togithub.com/vercel/turbo/pull/5960)
- bumping minor or major should reset patch/minor by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5955](https://togithub.com/vercel/turbo/pull/5955)
- fix: pin thiserror to <1.0.45 which requires updating the toolchain by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5962](https://togithub.com/vercel/turbo/pull/5962)

#### New Contributors

- [@&#8203;willwill96](https://togithub.com/willwill96) made their first
contribution in
[https://github.com/vercel/turbo/pull/5680](https://togithub.com/vercel/turbo/pull/5680)
- [@&#8203;boompikachu](https://togithub.com/boompikachu) made their
first contribution in
[https://github.com/vercel/turbo/pull/5893](https://togithub.com/vercel/turbo/pull/5893)
- [@&#8203;mitesh-gupta](https://togithub.com/mitesh-gupta) made their
first contribution in
[https://github.com/vercel/turbo/pull/5907](https://togithub.com/vercel/turbo/pull/5907)
- [@&#8203;Firgrep](https://togithub.com/Firgrep) made their first
contribution in
[https://github.com/vercel/turbo/pull/5937](https://togithub.com/vercel/turbo/pull/5937)
- [@&#8203;imCorfitz](https://togithub.com/imCorfitz) made their first
contribution in
[https://github.com/vercel/turbo/pull/5942](https://togithub.com/vercel/turbo/pull/5942)

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

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 4pm every weekday" in timezone
Europe/Paris, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zMS41IiwidXBkYXRlZEluVmVyIjoiMzcuMzEuNSIsInRhcmdldEJyYW5jaCI6ImNob3JlL3Jlbm92YXRlQmFzZUJyYW5jaCJ9-->

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

Successfully merging this pull request may close these issues.

None yet

2 participants