Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(turborepo): Size comes from the thing being read. #6092

Merged
merged 10 commits into from
Oct 17, 2023

Conversation

nathanhammond
Copy link
Contributor

@nathanhammond nathanhammond commented Oct 4, 2023

By splitting into two separate sources the metadata for hashing does not remain in sync with the contents of the file.

Further, fs::read_to_end already calls metadata on the open file, so this is duplicated work.

As a side effect, this PR also restores <= 1.10.6 (Go) behavior for hashing of symlinks, which is stat, not lstat:

// GitLikeHashFile is a function that mimics how Git
// calculates the SHA1 for a file (or, in Git terms, a "blob") (without git)
func GitLikeHashFile(filePath turbopath.AbsoluteSystemPath) (string, error) {
file, err := filePath.Open()
if err != nil {
return "", err
}
defer file.Close()
stat, err := file.Stat()
if err != nil {
return "", err
}
hash := sha1.New()
hash.Write([]byte("blob"))
hash.Write([]byte(" "))
hash.Write([]byte(strconv.FormatInt(stat.Size(), 10)))
hash.Write([]byte{0})
if _, err := io.Copy(hash, file); err != nil {
return "", err
}
return hex.EncodeToString(hash.Sum(nil)), nil
}

Fixes #6046

Closes TURBO-1417

@vercel
Copy link

vercel bot commented Oct 4, 2023

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

Name Status Preview Comments Updated (UTC)
examples-basic-web 🔄 Building (Inspect) Visit Preview 💬 Add feedback Oct 16, 2023 10:48pm
examples-kitchensink-blog 🔄 Building (Inspect) Visit Preview 💬 Add feedback Oct 16, 2023 10:48pm
examples-native-web 🔄 Building (Inspect) Visit Preview 💬 Add feedback Oct 16, 2023 10:48pm
8 Ignored Deployments
Name Status Preview Comments Updated (UTC)
examples-cra-web ⬜️ Ignored (Inspect) Visit Preview Oct 16, 2023 10:48pm
examples-designsystem-docs ⬜️ Ignored (Inspect) Visit Preview Oct 16, 2023 10:48pm
examples-gatsby-web ⬜️ Ignored (Inspect) Visit Preview Oct 16, 2023 10:48pm
examples-nonmonorepo ⬜️ Ignored (Inspect) Visit Preview Oct 16, 2023 10:48pm
examples-svelte-web ⬜️ Ignored (Inspect) Visit Preview Oct 16, 2023 10:48pm
examples-tailwind-web ⬜️ Ignored (Inspect) Visit Preview Oct 16, 2023 10:48pm
examples-vite-web ⬜️ Ignored (Inspect) Visit Preview Oct 16, 2023 10:48pm
turbo-site ⬜️ Ignored (Inspect) Visit Preview Oct 16, 2023 10:48pm

@vercel
Copy link

vercel bot commented Oct 4, 2023

Someone is attempting to deploy a commit to the Vercel Team on Vercel.

A member of the Team first needs to authorize it.

Copy link
Contributor Author

@nathanhammond nathanhammond 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!

let mut hasher = Sha1::new();
let mut f = path.open()?;
let mut buffer = Vec::new();
f.read_to_end(&mut buffer)?;
let size = f.read_to_end(&mut buffer)?;
Copy link
Contributor Author

Choose a reason for hiding this comment

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

read_to_end already attempts to do this optimally in terms of syscall count, we don't really need to help out.

read_to_end is this:

// Reserves space in the buffer based on the file size when available.
fn read_to_end(&mut self, buf: &mut Vec<u8>) -> io::Result<usize> {
    let size = buffer_capacity_required(self);
    buf.reserve(size.unwrap_or(0));
    io::default_read_to_end(self, buf, size)
}

buffer_capacity_required is this:

fn buffer_capacity_required(mut file: &File) -> Option<usize> {
    let size = file.metadata().map(|m| m.len()).ok()?;
    let pos = file.stream_position().ok()?;
    // Don't worry about `usize` overflow because reading will fail regardless
    // in that case.
    Some(size.saturating_sub(pos) as usize)
}

@@ -30,17 +30,19 @@ pub(crate) fn hash_files(
let mut hashes = GitHashes::new();
for file in files.into_iter() {
let path = root_path.resolve(file.as_ref());
let metadata = match path.symlink_metadata() {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Point of failure one: lstat. The size that we get off of a symlink_metadata call is nonsense in the event of the thing being a symlink.

};
let hash = git_like_hash_file(&path, &metadata)?;
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Point of failure two: fopen. fopen follows symlinks, which means that fopen can fail while symlink_metadata succeeds.

Err(e) => {
if allow_missing && e.is_io_error(std::io::ErrorKind::NotFound) {
continue;
match git_like_hash_file(&path) {
Copy link
Contributor Author

Choose a reason for hiding this comment

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

So, now we just attempt to hash the file, and let read_to_end do its thing.

We can then investigate the returned error to see if it is ENOENT.

Comment on lines 111 to 113
if metadata.is_symlink() {
continue;
}
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 line of code + follow_links = false means that if the symlink target is outside of the package or in the package but otherwise ignored we get a bad hash.

I believe that we should be following symlinks, and if it is a broken symlink, hash it the same way git does (by target).

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 would also mean that if we ls-tree and have a symlink, we need to replace it with the target hash if the target exists and is a file, and, if the target is a directory, walk it.

What should we do about .gitignore when walking a symlink'd directory's contents? 😅🤷‍♂️

Copy link
Contributor

Choose a reason for hiding this comment

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

Interesting behaviour, did a little test and it seems that ls-tree does indeed not expose symlinks. Git does at least give the file mode so we can manually check for symlinks (120000).

I think in this case, there is an optimisation we could apply with a caveat:

  • Evaluate the symlink, and try to find files with the same path prefix as the destination in the ls-tree output rather than having to walk the fs
  • In that case the 'gitignore stack' would be the of the target rather than of the source
  • If the destination is not in the ls-tree output (ie. outside the repo) we would either need to warn and ignore or explicitly
  • With the target being outside the repo it would not have a 'gitignore stack' so we would have to use the stack of the source

These two behaviours conflict but I don't think we should support symlinks outside the repo root anyways so perhaps erroring is sufficient.

Copy link
Contributor

@gsoltis gsoltis Oct 4, 2023

Choose a reason for hiding this comment

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

The intention with the change was to hash symlink files, not their targets. There's been a series of differently-incorrect behavior here:

  • As @arlyon notes, ls-tree does list a hash for the symlink. So without inputs, they are wholesale ignored.
  • when using inputs, and at least since switching to the encoder setup in Go, symlinks caused an error and we fell back to manual hashing. It's very possible that was the behavior before also, I haven't checked
  • manual hashing in Go calls os.Open, which reads the target.
  • Rust ls-tree has the same restriction as the Go implementation, it ignores symlinks
  • Rust git-based hashing, with inputs, was intended to switch to hashing the contents of the symlink, but there are several problems:
    1. We eventually get to fopen as @nathanhammond notes. This follows the link. The Go manual file hashing implementation has the same behavior. At least for the Rust implementation, that was not the intention, and I would consider it a bug at least insofar as it doesn't do what was intended.
    2. As noted in the slack thread, the raw contents of the link is not portable, so probably not what we want to hash
    3. We currently have checks in place to skip over hashing symlinks only when using manual hashing

In terms of what I think should happen is the following:

  • Short term: update all paths through hashing to match. Probably ignore symlinks for now. The link target should be required to be covered by inputs anyways. This leaves the existing bug of not hashing symlinks in place, but makes us consistent about it.
  • Medium term: Hash a portable representation of the contents of the symlink, not the target. This saves us from having to care about file vs directory, broken vs working, and in-repo vs not, which in the presence of inputs is not even necessarily a clear distinction (do we follow in-repo, but out-of-inputs links?). Users will be required to ensure that the target is covered by their inputs if they want the target hashed. This is mirrors our behavior for caching: we don't cache the target of symlinks. If you want it cached, ensure that the target is also covered by the outputs globs.
  • Longer term: determine how to handle symlinks when inputs is not specified.

Copy link
Contributor

@arlyon arlyon left a comment

Choose a reason for hiding this comment

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

No changes, just some comments

Comment on lines 111 to 113
if metadata.is_symlink() {
continue;
}
Copy link
Contributor

Choose a reason for hiding this comment

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

Interesting behaviour, did a little test and it seems that ls-tree does indeed not expose symlinks. Git does at least give the file mode so we can manually check for symlinks (120000).

I think in this case, there is an optimisation we could apply with a caveat:

  • Evaluate the symlink, and try to find files with the same path prefix as the destination in the ls-tree output rather than having to walk the fs
  • In that case the 'gitignore stack' would be the of the target rather than of the source
  • If the destination is not in the ls-tree output (ie. outside the repo) we would either need to warn and ignore or explicitly
  • With the target being outside the repo it would not have a 'gitignore stack' so we would have to use the stack of the source

These two behaviours conflict but I don't think we should support symlinks outside the repo root anyways so perhaps erroring is sufficient.

crates/turborepo-scm/src/manual.rs Outdated Show resolved Hide resolved
Copy link
Contributor

@gsoltis gsoltis left a comment

Choose a reason for hiding this comment

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

Let's make sure we're all on the same page about where this is going before merging.

Getting the size from the thing that's read seems fine, I'm more concerned about what we intend behavior to be with symlinks vs targets.

I'll defer to @arlyon for Rust notes.

Add comment to `read_to_end` usage
Copy link
Contributor

@gsoltis gsoltis left a comment

Choose a reason for hiding this comment

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

Documented read_to_end behavior re: symlinks, updating internal discussion on desired eventual symlink handling.

@gsoltis gsoltis merged commit 75a68ce into vercel:main Oct 17, 2023
57 of 59 checks passed
kodiakhq bot pushed a commit to timelessco/js-bottomsheet 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 |
|---|---|---|---|---|---|
| [lint-staged](https://togithub.com/okonet/lint-staged) | [`^15.0.1` -> `^15.0.2`](https://renovatebot.com/diffs/npm/lint-staged/15.0.1/15.0.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/lint-staged/15.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/lint-staged/15.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/lint-staged/15.0.1/15.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/lint-staged/15.0.1/15.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`^1.10.15` -> `^1.10.16`](https://renovatebot.com/diffs/npm/turbo/1.10.15/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.15/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.15/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>okonet/lint-staged (lint-staged)</summary>

### [`v15.0.2`](https://togithub.com/okonet/lint-staged/blob/HEAD/CHANGELOG.md#1502)

[Compare Source](https://togithub.com/okonet/lint-staged/compare/v15.0.1...v15.0.2)

##### Patch Changes

-   [#&#8203;1339](https://togithub.com/lint-staged/lint-staged/pull/1339) [`8e82364`](https://togithub.com/lint-staged/lint-staged/commit/8e82364dd89155e96de574cfb38a94d28b8635af) Thanks [@&#8203;iiroj](https://togithub.com/iiroj)! - Update dependencies, including listr2@&#8203;7.0.2 to fix an upstream issue affecting lint-staged.

</details>

<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)



#### 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

</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 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.15` ->
`1.10.16`](https://renovatebot.com/diffs/npm/turbo/1.10.15/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.15/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.15/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

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

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 20, 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 |
|---|---|---|---|---|---|
| [@storybook/addon-a11y](https://togithub.com/storybookjs/storybook/tree/next/code/addons/a11y) ([source](https://togithub.com/storybookjs/storybook)) | [`7.5.0` -> `7.5.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-a11y/7.5.0/7.5.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-a11y/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-a11y/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-a11y/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-a11y/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-essentials](https://togithub.com/storybookjs/storybook/tree/next/code/addons/essentials) ([source](https://togithub.com/storybookjs/storybook)) | [`7.5.0` -> `7.5.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-essentials/7.5.0/7.5.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-essentials/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-essentials/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-essentials/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-essentials/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-interactions](https://togithub.com/storybookjs/storybook/tree/next/code/addons/interactions) ([source](https://togithub.com/storybookjs/storybook)) | [`7.5.0` -> `7.5.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-interactions/7.5.0/7.5.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-interactions/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-interactions/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-interactions/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-interactions/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-links](https://togithub.com/storybookjs/storybook/tree/next/code/addons/links) ([source](https://togithub.com/storybookjs/storybook)) | [`7.5.0` -> `7.5.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-links/7.5.0/7.5.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-links/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-links/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-links/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-links/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-viewport](https://togithub.com/storybookjs/storybook/tree/next/code/addons/viewport) ([source](https://togithub.com/storybookjs/storybook)) | [`7.5.0` -> `7.5.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-viewport/7.5.0/7.5.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-viewport/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-viewport/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-viewport/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-viewport/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/blocks](https://togithub.com/storybookjs/storybook/tree/next/code/ui/blocks) ([source](https://togithub.com/storybookjs/storybook)) | [`7.5.0` -> `7.5.1`](https://renovatebot.com/diffs/npm/@storybook%2fblocks/7.5.0/7.5.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2fblocks/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2fblocks/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2fblocks/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2fblocks/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/nextjs](https://togithub.com/storybookjs/storybook/tree/next/code/frameworks/nextjs) ([source](https://togithub.com/storybookjs/storybook)) | [`7.5.0` -> `7.5.1`](https://renovatebot.com/diffs/npm/@storybook%2fnextjs/7.5.0/7.5.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2fnextjs/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2fnextjs/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2fnextjs/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2fnextjs/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/react](https://togithub.com/storybookjs/storybook/tree/next/code/renderers/react) ([source](https://togithub.com/storybookjs/storybook)) | [`7.5.0` -> `7.5.1`](https://renovatebot.com/diffs/npm/@storybook%2freact/7.5.0/7.5.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2freact/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2freact/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2freact/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2freact/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/client](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.40.0` -> `10.41.0`](https://renovatebot.com/diffs/npm/@trpc%2fclient/10.40.0/10.41.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fclient/10.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fclient/10.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fclient/10.40.0/10.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fclient/10.40.0/10.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/next](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.40.0` -> `10.41.0`](https://renovatebot.com/diffs/npm/@trpc%2fnext/10.40.0/10.41.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fnext/10.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fnext/10.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fnext/10.40.0/10.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fnext/10.40.0/10.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/react-query](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.40.0` -> `10.41.0`](https://renovatebot.com/diffs/npm/@trpc%2freact-query/10.40.0/10.41.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2freact-query/10.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2freact-query/10.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2freact-query/10.40.0/10.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2freact-query/10.40.0/10.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@trpc/server](https://trpc.io) ([source](https://togithub.com/trpc/trpc)) | [`10.40.0` -> `10.41.0`](https://renovatebot.com/diffs/npm/@trpc%2fserver/10.40.0/10.41.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@trpc%2fserver/10.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@trpc%2fserver/10.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@trpc%2fserver/10.40.0/10.41.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@trpc%2fserver/10.40.0/10.41.0?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.29` -> `18.2.30`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.29/18.2.30) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.30?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.30?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.29/18.2.30?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.29/18.2.30?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.13` -> `18.2.14`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.2.13/18.2.14) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact-dom/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact-dom/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact-dom/18.2.13/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact-dom/18.2.13/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/umami](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/umami) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`0.1.3` -> `0.1.4`](https://renovatebot.com/diffs/npm/@types%2fumami/0.1.3/0.1.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fumami/0.1.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fumami/0.1.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fumami/0.1.3/0.1.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fumami/0.1.3/0.1.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-plugin-turbo](https://togithub.com/vercel/turbo) | [`1.10.15` -> `1.10.16`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/1.10.15/1.10.16) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-turbo/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-plugin-turbo/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-plugin-turbo/1.10.15/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-plugin-turbo/1.10.15/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [i18next](https://www.i18next.com) ([source](https://togithub.com/i18next/i18next)) | [`23.5.1` -> `23.6.0`](https://renovatebot.com/diffs/npm/i18next/23.5.1/23.6.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/i18next/23.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/i18next/23.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/i18next/23.5.1/23.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/i18next/23.5.1/23.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [lint-staged](https://togithub.com/okonet/lint-staged) | [`15.0.1` -> `15.0.2`](https://renovatebot.com/diffs/npm/lint-staged/15.0.1/15.0.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/lint-staged/15.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/lint-staged/15.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/lint-staged/15.0.1/15.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/lint-staged/15.0.1/15.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [react-i18next](https://togithub.com/i18next/react-i18next) | [`13.3.0` -> `13.3.1`](https://renovatebot.com/diffs/npm/react-i18next/13.3.0/13.3.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-i18next/13.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/react-i18next/13.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/react-i18next/13.3.0/13.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-i18next/13.3.0/13.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [storybook](https://togithub.com/storybookjs/storybook/tree/next/code/lib/cli) ([source](https://togithub.com/storybookjs/storybook)) | [`7.5.0` -> `7.5.1`](https://renovatebot.com/diffs/npm/storybook/7.5.0/7.5.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/storybook/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/storybook/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/storybook/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/storybook/7.5.0/7.5.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.15` -> `1.10.16`](https://renovatebot.com/diffs/npm/turbo/1.10.15/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.15/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.15/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>storybookjs/storybook (@&#8203;storybook/addon-a11y)</summary>

### [`v7.5.1`](https://togithub.com/storybookjs/storybook/compare/v7.5.0...6ceb141d3f05f5a10cfb89cd0943ff83d031bcaf)

[Compare Source](https://togithub.com/storybookjs/storybook/compare/v7.5.0...v7.5.1)

</details>

<details>
<summary>storybookjs/storybook (@&#8203;storybook/addon-essentials)</summary>

### [`v7.5.1`](https://togithub.com/storybookjs/storybook/compare/v7.5.0...6ceb141d3f05f5a10cfb89cd0943ff83d031bcaf)

[Compare Source](https://togithub.com/storybookjs/storybook/compare/v7.5.0...v7.5.1)

</details>

<details>
<summary>storybookjs/storybook (@&#8203;storybook/addon-interactions)</summary>

### [`v7.5.1`](https://togithub.com/storybookjs/storybook/compare/v7.5.0...6ceb141d3f05f5a10cfb89cd0943ff83d031bcaf)

[Compare Source](https://togithub.com/storybookjs/storybook/compare/v7.5.0...v7.5.1)

</details>

<details>
<summary>storybookjs/storybook (@&#8203;storybook/addon-links)</summary>

### [`v7.5.1`](https://togithub.com/storybookjs/storybook/compare/v7.5.0...6ceb141d3f05f5a10cfb89cd0943ff83d031bcaf)

[Compare Source](https://togithub.com/storybookjs/storybook/compare/v7.5.0...v7.5.1)

</details>

<details>
<summary>storybookjs/storybook (@&#8203;storybook/addon-viewport)</summary>

### [`v7.5.1`](https://togithub.com/storybookjs/storybook/releases/tag/v7.5.1)

[Compare Source](https://togithub.com/storybookjs/storybook/compare/v7.5.0...v7.5.1)

##### 7.5.1

-   Angular: update wrong type for webpackStatsJson in start-storybook schema.json - [#&#8203;24494](https://togithub.com/storybookjs/storybook/pull/24494), thanks [@&#8203;LucaVazz](https://togithub.com/LucaVazz)!
-   Themes: Run postinstall in shell for windows - [#&#8203;24389](https://togithub.com/storybookjs/storybook/pull/24389), thanks [@&#8203;Integrayshaun](https://togithub.com/Integrayshaun)!

</details>

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

### [`v10.41.0`](https://togithub.com/trpc/trpc/releases/tag/v10.41.0)

[Compare Source](https://togithub.com/trpc/trpc/compare/v10.40.0...v10.41.0)

##### What's Changed

-   feat(app dir): use query params typing for `revalidate` in `createTRPCNextAppDirServer` by [@&#8203;DerTimonius](https://togithub.com/DerTimonius) in [trpc/trpc#4898
-   feat(react-query): rename `useContext()` -> `useUtils()` and alias `useContext` by [@&#8203;Nick-Lucas](https://togithub.com/Nick-Lucas) in [trpc/trpc#4925

##### New Contributors

-   [@&#8203;raphtlw](https://togithub.com/raphtlw) made their first contribution in [trpc/trpc#4900
-   [@&#8203;mjomble](https://togithub.com/mjomble) made their first contribution in [trpc/trpc#4913
-   [@&#8203;denlly](https://togithub.com/denlly) made their first contribution in [trpc/trpc#4914
-   [@&#8203;DerTimonius](https://togithub.com/DerTimonius) made their first contribution in [trpc/trpc#4898

**Full Changelog**: trpc/trpc@v10.40.0...v10.41.0

</details>

<details>
<summary>vercel/turbo (eslint-plugin-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)



#### 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

</details>

<details>
<summary>i18next/i18next (i18next)</summary>

### [`v23.6.0`](https://togithub.com/i18next/i18next/blob/HEAD/CHANGELOG.md#2360)

[Compare Source](https://togithub.com/i18next/i18next/compare/v23.5.1...v23.6.0)

-   add interpolation data to response if returnDetails is true [2053](https://togithub.com/i18next/i18next/pull/2053)

</details>

<details>
<summary>okonet/lint-staged (lint-staged)</summary>

### [`v15.0.2`](https://togithub.com/okonet/lint-staged/blob/HEAD/CHANGELOG.md#1502)

[Compare Source](https://togithub.com/okonet/lint-staged/compare/v15.0.1...v15.0.2)

##### Patch Changes

-   [#&#8203;1339](https://togithub.com/lint-staged/lint-staged/pull/1339) [`8e82364`](https://togithub.com/lint-staged/lint-staged/commit/8e82364dd89155e96de574cfb38a94d28b8635af) Thanks [@&#8203;iiroj](https://togithub.com/iiroj)! - Update dependencies, including listr2@&#8203;7.0.2 to fix an upstream issue affecting lint-staged.

</details>

<details>
<summary>i18next/react-i18next (react-i18next)</summary>

### [`v13.3.1`](https://togithub.com/i18next/react-i18next/blob/HEAD/CHANGELOG.md#1331)

[Compare Source](https://togithub.com/i18next/react-i18next/compare/v13.3.0...v13.3.1)

-   optimize defaultVariables feature introduced in last release

</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: #218
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to fwouts/previewjs that referenced this pull request Oct 20, 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.15` ->
`^1.10.16`](https://renovatebot.com/diffs/npm/turbo/1.10.15/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.15/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.15/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

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

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.15` -> `1.10.16`](https://renovatebot.com/diffs/npm/turbo/1.10.15/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.15/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.15/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)



#### 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

</details>

---

### Configuration

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

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

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

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

---

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

---

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@commitlint/cli](https://commitlint.js.org/) ([source](https://togithub.com/conventional-changelog/commitlint)) | [`17.7.2` -> `17.8.0`](https://renovatebot.com/diffs/npm/@commitlint%2fcli/17.7.2/17.8.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@commitlint%2fcli/17.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@commitlint%2fcli/17.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@commitlint%2fcli/17.7.2/17.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@commitlint%2fcli/17.7.2/17.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@commitlint/config-conventional](https://commitlint.js.org/) ([source](https://togithub.com/conventional-changelog/commitlint)) | [`17.7.0` -> `17.8.0`](https://renovatebot.com/diffs/npm/@commitlint%2fconfig-conventional/17.7.0/17.8.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@commitlint%2fconfig-conventional/17.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@commitlint%2fconfig-conventional/17.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@commitlint%2fconfig-conventional/17.7.0/17.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@commitlint%2fconfig-conventional/17.7.0/17.8.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@next/bundle-analyzer](https://togithub.com/vercel/next.js) | [`13.5.4` -> `13.5.6`](https://renovatebot.com/diffs/npm/@next%2fbundle-analyzer/13.5.4/13.5.6) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@next%2fbundle-analyzer/13.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@next%2fbundle-analyzer/13.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@next%2fbundle-analyzer/13.5.4/13.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@next%2fbundle-analyzer/13.5.4/13.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@next/env](https://togithub.com/vercel/next.js) | [`13.5.4` -> `13.5.6`](https://renovatebot.com/diffs/npm/@next%2fenv/13.5.4/13.5.6) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@next%2fenv/13.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@next%2fenv/13.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@next%2fenv/13.5.4/13.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@next%2fenv/13.5.4/13.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@next/eslint-plugin-next](https://togithub.com/vercel/next.js) | [`13.5.4` -> `13.5.6`](https://renovatebot.com/diffs/npm/@next%2feslint-plugin-next/13.5.4/13.5.6) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@next%2feslint-plugin-next/13.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@next%2feslint-plugin-next/13.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@next%2feslint-plugin-next/13.5.4/13.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@next%2feslint-plugin-next/13.5.4/13.5.6?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.5` -> `18.18.6`](https://renovatebot.com/diffs/npm/@types%2fnode/18.18.5/18.18.6) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/18.18.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/18.18.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/18.18.5/18.18.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/18.18.5/18.18.6?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.28` -> `18.2.30`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.28/18.2.30) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.30?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.30?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.28/18.2.30?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.28/18.2.30?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.13` -> `18.2.14`](https://renovatebot.com/diffs/npm/@types%2freact-dom/18.2.13/18.2.14) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact-dom/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact-dom/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact-dom/18.2.13/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact-dom/18.2.13/18.2.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [cspell](https://streetsidesoftware.github.io/cspell/) ([source](https://togithub.com/streetsidesoftware/cspell)) | [`7.3.7` -> `7.3.8`](https://renovatebot.com/diffs/npm/cspell/7.3.7/7.3.8) | [![age](https://developer.mend.io/api/mc/badges/age/npm/cspell/7.3.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/cspell/7.3.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/cspell/7.3.7/7.3.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/cspell/7.3.7/7.3.8?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [git-url-parse](https://togithub.com/IonicaBizau/git-url-parse) | [`13.1.0` -> `13.1.1`](https://renovatebot.com/diffs/npm/git-url-parse/13.1.0/13.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/git-url-parse/13.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/git-url-parse/13.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/git-url-parse/13.1.0/13.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/git-url-parse/13.1.0/13.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [knip](https://togithub.com/webpro/knip) | [`2.33.3` -> `2.35.0`](https://renovatebot.com/diffs/npm/knip/2.33.3/2.35.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/knip/2.35.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/knip/2.35.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/knip/2.33.3/2.35.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/knip/2.33.3/2.35.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [prettier-plugin-tailwindcss](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss) | [`0.5.5` -> `0.5.6`](https://renovatebot.com/diffs/npm/prettier-plugin-tailwindcss/0.5.5/0.5.6) | [![age](https://developer.mend.io/api/mc/badges/age/npm/prettier-plugin-tailwindcss/0.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prettier-plugin-tailwindcss/0.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prettier-plugin-tailwindcss/0.5.5/0.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prettier-plugin-tailwindcss/0.5.5/0.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [stylelint](https://stylelint.io) ([source](https://togithub.com/stylelint/stylelint)) | [`15.10.3` -> `15.11.0`](https://renovatebot.com/diffs/npm/stylelint/15.10.3/15.11.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/stylelint/15.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/stylelint/15.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/stylelint/15.10.3/15.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/stylelint/15.10.3/15.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [title-case](https://togithub.com/blakeembrey/change-case/tree/master/packages/title-case#readme) ([source](https://togithub.com/blakeembrey/change-case)) | [`4.1.0` -> `4.1.1`](https://renovatebot.com/diffs/npm/title-case/4.1.0/4.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/title-case/4.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/title-case/4.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/title-case/4.1.0/4.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/title-case/4.1.0/4.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.15` -> `1.10.16`](https://renovatebot.com/diffs/npm/turbo/1.10.15/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.15/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.15/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

### [`v17.8.0`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/cli/CHANGELOG.md#1780-2023-10-14)

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

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

#### [17.7.2](https://togithub.com/conventional-changelog/commitlint/compare/v17.7.1...v17.7.2) (2023-09-28)

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

#### [17.7.1](https://togithub.com/conventional-changelog/commitlint/compare/v17.7.0...v17.7.1) (2023-08-10)

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

</details>

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

### [`v17.8.0`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/config-conventional/CHANGELOG.md#1780-2023-10-14)

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

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

</details>

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

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

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

##### Core Changes

-   Upgrade edge-runtime/cookies [#&#8203;57021](https://togithub.com/vercel/next.js/issues/57021)
-   Patch React with fix for write-after-close for ReadableStream [#&#8203;57011](https://togithub.com/vercel/next.js/issues/57011)

##### Credits

Huge thanks to [@&#8203;ijjk](https://togithub.com/ijjk) [@&#8203;huozhi](https://togithub.com/huozhi) [@&#8203;gnoff](https://togithub.com/gnoff) for helping!

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

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

</details>

<details>
<summary>streetsidesoftware/cspell (cspell)</summary>

### [`v7.3.8`](https://togithub.com/streetsidesoftware/cspell/blob/HEAD/CHANGELOG.md#small738-2023-10-13-small)

[Compare Source](https://togithub.com/streetsidesoftware/cspell/compare/v7.3.7...v7.3.8)

-   ci: Workflow Bot -- Update ALL Dependencies (main) ([#&#8203;4894](https://togithub.com/streetsidesoftware/cspell/issues/4894)) ([2a4e1d8](https://togithub.com/streetsidesoftware/cspell/commit/2a4e1d8)), closes [#&#8203;4894](https://togithub.com/streetsidesoftware/cspell/issues/4894)

</details>

<details>
<summary>IonicaBizau/git-url-parse (git-url-parse)</summary>

### [`v13.1.1`](https://togithub.com/IonicaBizau/git-url-parse/releases/tag/13.1.1)

[Compare Source](https://togithub.com/IonicaBizau/git-url-parse/compare/13.1.0...13.1.1)

fixed name and organization issue when parsing on the issue URL

</details>

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

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.34.1...2.35.0)

-   Support (async) function in vite plugin (resolves [#&#8203;303](https://togithub.com/webpro/knip/issues/303)) ([`7b1686b`](https://togithub.com/webpro/knip/commit/7b1686b))
-   Also make astro, gatsby, next and remix entry patterns overridable ([`e2aebc3`](https://togithub.com/webpro/knip/commit/e2aebc3))
-   support postcss cjs format ([#&#8203;304](https://togithub.com/webpro/knip/issues/304)) ([`47b09c9`](https://togithub.com/webpro/knip/commit/47b09c9))

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.34.0...2.34.1)

-   Add `finalData.counters` and use `finalData.report` ([#&#8203;300](https://togithub.com/webpro/knip/issues/300)) ([`1a19087`](https://togithub.com/webpro/knip/commit/1a19087))

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.33.4...2.34.0)

-   Add support for class get/set accessors (resolves [#&#8203;297](https://togithub.com/webpro/knip/issues/297)) ([`d027e97`](https://togithub.com/webpro/knip/commit/d027e97))
-   Base total error count on report after preprocessing (fixes [#&#8203;300](https://togithub.com/webpro/knip/issues/300)) ([`3e29758`](https://togithub.com/webpro/knip/commit/3e29758))
-   Add `--directory [dir]` argument to run the process from a different dir ([`b331033`](https://togithub.com/webpro/knip/commit/b331033))
-   Update compilers docs + fixtures ([`7f63c75`](https://togithub.com/webpro/knip/commit/7f63c75))
-   Regenerate docs ([`02bc3e3`](https://togithub.com/webpro/knip/commit/02bc3e3))
-   Add test suite for all current config loading systems ([#&#8203;301](https://togithub.com/webpro/knip/issues/301)) ([`a18f2a6`](https://togithub.com/webpro/knip/commit/a18f2a6))
-   Add astro plugin ([#&#8203;298](https://togithub.com/webpro/knip/issues/298)) ([`50dd048`](https://togithub.com/webpro/knip/commit/50dd048))
-   Change Nx detection to the new npm scope ([#&#8203;302](https://togithub.com/webpro/knip/issues/302)) ([`4d6dea8`](https://togithub.com/webpro/knip/commit/4d6dea8))

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.33.3...2.33.4)

-   Wrap result of `path.relative` in `toPosix` ([`176777e`](https://togithub.com/webpro/knip/commit/176777e))
-   Update readme w/ Bun support ([`6a1cbb3`](https://togithub.com/webpro/knip/commit/6a1cbb3))
-   Major housekeeping for plugins + configs (consistency + bug fixes) ([`9fd764b`](https://togithub.com/webpro/knip/commit/9fd764b))
-   Remove unused lockfiles ([`589c69a`](https://togithub.com/webpro/knip/commit/589c69a))
-   Prettify debug output a bit, consistent context arg ([`3638fb2`](https://togithub.com/webpro/knip/commit/3638fb2))

</details>

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

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

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

##### Fixed

-   Fix sorting inside `{{ … }}` expressions when using `@shopify/prettier-plugin-liquid` v1.3+ ([#&#8203;222](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/pull/222))

</details>

<details>
<summary>stylelint/stylelint (stylelint)</summary>

### [`v15.11.0`](https://togithub.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#15110)

[Compare Source](https://togithub.com/stylelint/stylelint/compare/15.10.3...15.11.0)

-   Added: `ignoreRules` to `max-nesting-depth` ([#&#8203;7215](https://togithub.com/stylelint/stylelint/pull/7215)) ([@&#8203;mattxwang](https://togithub.com/mattxwang)).
-   Fixed: `declaration-block-no-redundant-longhand-properties` autofix for `grid-template` with `repeat()` ([#&#8203;7230](https://togithub.com/stylelint/stylelint/pull/7230)) ([@&#8203;mattxwang](https://togithub.com/mattxwang)).
-   Fixed: `declaration-block-no-redundant-longhand-properties` false negative for `font-synthesis` ([#&#8203;7214](https://togithub.com/stylelint/stylelint/pull/7214)) ([@&#8203;mattxwang](https://togithub.com/mattxwang)).
-   Fixed: `declaration-block-no-redundant-longhand-properties` false negatives for `*-block` and `*-inline` logical properties ([#&#8203;7208](https://togithub.com/stylelint/stylelint/pull/7208)) ([@&#8203;mattxwang](https://togithub.com/mattxwang)).
-   Fixed: `declaration-block-no-redundant-longhand-properties` false negatives for `overflow`, `overscroll-behavior`, `scroll-margin`, `scroll-padding`, and new Box Alignment shorthands ([#&#8203;7213](https://togithub.com/stylelint/stylelint/pull/7213)) ([@&#8203;mattxwang](https://togithub.com/mattxwang)).
-   Fixed: `function-no-unknown` false positives for `light-dark`, `linear` and `xywh` ([#&#8203;7242](https://togithub.com/stylelint/stylelint/pull/7242)) ([@&#8203;mattxwang](https://togithub.com/mattxwang)).

</details>

<details>
<summary>blakeembrey/change-case (title-case)</summary>

### [`v4.1.1`](https://togithub.com/blakeembrey/change-case/releases/tag/title-case%404.1.1): Fix &quot;a&quot; lower case

[Compare Source](https://togithub.com/blakeembrey/change-case/compare/title-case@4.1.0...title-case@4.1.1)

**Fixed**

-   Fixed an issue where "a" would be incorrectly capitalized ([blakeembrey/change-case#307), fixed by [@&#8203;galenhuntington](https://togithub.com/galenhuntington) in [blakeembrey/change-case#310

</details>

<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)



##### 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

</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).
davydkov added a commit to likec4/likec4 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.15` ->
`^1.10.16`](https://renovatebot.com/diffs/npm/turbo/1.10.15/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.15/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.15/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

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xOS4yIiwidXBkYXRlZEluVmVyIjoiMzcuMTkuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->
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>
benelan pushed a commit to Esri/calcite-design-system that referenced this pull request Dec 4, 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.15` ->
`1.10.16`](https://renovatebot.com/diffs/npm/turbo/1.10.15/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.15/1.10.16?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.15/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

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 5am every weekday" in timezone
America/Los_Angeles, Automerge - At any time (no schedule defined).

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

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

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

---

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

---

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

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

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.

[turborepo] fails to hash the project without a clear reason
3 participants