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

Generic types over Vcs #5738

Merged

Conversation

alexkirsz
Copy link
Contributor

@alexkirsz alexkirsz commented Aug 16, 2023

Description

This PR enables types generic over Vcs to work as value types.

In other words, where we would previously need to declare all generic/container types over a given value type at the definition site, like the following:

#[turbo_tasks::value]
struct Thing;

#[turbo_tasks::value(transparent)]
struct Things(Vec<Vc<Thing>>);

#[turbo_tasks::value(transparent)]
struct ThingOption(Option<Vc<Thing>>);

#[turbo_tasks::value(transparent)]
struct ThingSet(IndexSet<Vc<Thing>>);

#[turbo_tasks::value(transparent)]
struct ThingMap(IndexMap<Vc<ThingKey>, Vc<Thing>>);

let vec: Vc<Things> = Vc::cell(vec![Thing.cell()]);
let option: Vc<ThingOption> = Vc::cell(Some(Thing.cell()));

// etc.

We can now refer to Vc<Vec<Vc<Thing>>> directly, without needing to declare an intermediate transparent value type:

#[turbo_tasks::value]
struct Thing;

let vec: Vc<Vec<_>> = Vc::cell(vec![Thing.cell()]);
let option: Vc<Option<_>> = Vc::cell(Some(Thing.cell()));
// etc.

The following generic types and methods are currently supported:

  • Option<Vc<T>>
    • ::is_some(self: Vc<Self>) -> Vc<bool>
    • ::is_none(self: Vc<Self>) -> Vc<bool>
  • Vec<Vc<T>>
    • ::is_empty(self: Vc<Self>) -> Vc<bool>
    • ::len(self: Vc<Self>) -> Vc<usize>
  • IndexSet<Vc<T>>
    • ::is_empty(self: Vc<Self>) -> Vc<bool>
    • ::len(self: Vc<Self>) -> Vc<usize>
  • IndexMap<Vc<K>, Vc<V>>
    • ::is_empty(self: Vc<Self>) -> Vc<bool>
    • ::len(self: Vc<Self>) -> Vc<usize>

All these value types also implement ValueDefault, which means that you can instantiate them using Default::default() or Vc::default():

let vec: Vc<Vec<Vc<u32>>> = Default::default()

They also work recursively, but I would recommend creating intermediate types instead of this in most (all?) cases:

let vec: Vc<Vec<Vc<Vec<Vc<u32>>>>> = Default::default()

Notes and implementation details

  1. This only works when the generic type is wrapped in a Vc. In the example above, this would not cover Vc<Vec<Thing>> directly. The implementation relies on the fact that all Type<Vc<T>> are represented the exact same way in memory, and as such can all be cast to some common Type<Vc<()>> for storage.
  2. Like primitives, these generic types can currently only be declared in turbo_tasks itself. Technically, if a crate owns a type A, it could also register A as a generic type, so we might want to allow this in the future (e.g. AliasMap in turbopack?)
  3. There's some potential performance/correctness issues around celling, I'll defer to @sokra to figure out if this approach is worth it.

Testing Instructions

I added some tests to all_in_one.rs.

@vercel
Copy link

vercel bot commented Aug 16, 2023

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

Name Status Preview Comments Updated (UTC)
examples-basic-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 24, 2023 6:54am
examples-cra-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 24, 2023 6:54am
examples-designsystem-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 24, 2023 6:54am
examples-gatsby-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 24, 2023 6:54am
examples-kitchensink-blog ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 24, 2023 6:54am
examples-native-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 24, 2023 6:54am
examples-nonmonorepo ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 24, 2023 6:54am
examples-svelte-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 24, 2023 6:54am
examples-tailwind-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 24, 2023 6:54am
examples-vite-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 24, 2023 6:54am
turbo-site ✅ Ready (Inspect) Visit Preview 💬 Add feedback Aug 24, 2023 6:54am

@github-actions
Copy link
Contributor

✅ This change can build next-swc

@github-actions
Copy link
Contributor

github-actions bot commented Aug 16, 2023

⚠️ CI failed ⚠️

The following steps have failed in CI:

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

See workflow summary for details

@github-actions
Copy link
Contributor

Linux Benchmark for 629f29e

Click to view benchmark
Test Base PR % Significant %
bench_hmr_to_commit/Turbopack CSR/1000 modules 5817.80µs ± 37.57µs 5886.61µs ± 40.10µs +1.18%
bench_hmr_to_eval/Turbopack CSR/1000 modules 5415.76µs ± 22.52µs 5608.05µs ± 222.88µs +3.55%
bench_startup/Turbopack CSR/1000 modules 1010.03ms ± 3.10ms 1018.57ms ± 4.88ms +0.85%

@github-actions
Copy link
Contributor

MacOS Benchmark for 629f29e

Test Base PR % Significant %
bench_hmr_to_eval/Turbopack CSR/1000 modules 25.97ms ± 0.04ms 53.89ms ± 1.96ms +107.52% +91.83%
bench_startup/Turbopack CSR/1000 modules 5429.20ms ± 741.60ms 3539.73ms ± 86.71ms -34.80% -5.90%
Click to view full benchmark
Test Base PR % Significant %
bench_hmr_to_commit/Turbopack CSR/1000 modules 26.90ms ± 0.08ms 26.77ms ± 0.15ms -0.46%
bench_hmr_to_eval/Turbopack CSR/1000 modules 25.97ms ± 0.04ms 53.89ms ± 1.96ms +107.52% +91.83%
bench_startup/Turbopack CSR/1000 modules 5429.20ms ± 741.60ms 3539.73ms ± 86.71ms -34.80% -5.90%

Comment on lines +14 to +18
#[turbo_tasks::function]
async fn index_map_len(index_map: Vc<IndexMap<Vc<()>, Vc<()>>>) -> Result<Vc<usize>> {
let index_map = index_map.await?;
Ok(Vc::cell(index_map.len()))
}
Copy link
Contributor

Choose a reason for hiding this comment

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

From my understanding, the value of tasks is that they'll be cached, and calling a function doesn't necessarily make the output a dependency of the current function (until it's read). That is, we can pass the output to another task.

But these are so trivial, and the only case I really imagine happening is we immediately read the len in the current task. I don't think these'll be passed around, they'll just be used in place of the usual map.await?.len() -> map.len().await?.

In that case, do these even need to be tasks?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I've added these methods because I recalled a few places where we did something similar on a #[turbo_tasks::value(transparent)] vector of Vcs, but I actually can't find a good example. So perhaps we don't need these indeed and should recommend the .await?.method() form instead.

Copy link
Member

Choose a reason for hiding this comment

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

There is benefit of having a len() task. It can reduce the amount of recomputation.
map.await?.len() will invalidate the current task when anything inside the map changes. map.len().await? will only invalidate the current task when the length changes. So in the case of swapping one element with another one, it will have a benefit.
It's probably not very likely that changes to the map don't affect the length, but there is a possibility.
In case of is_empty is_none etc. it's far more likely to have bigger effect on invalidation. It makes sense to use when a task only depend on the existence of something.
Using these methods doesn't make sense when you read the map anyway after checking the result of one of these methods.

crates/turbo-tasks/src/generics/index_map.rs Outdated Show resolved Hide resolved
crates/turbo-tasks/src/generics/index_set.rs Outdated Show resolved Hide resolved
crates/turbo-tasks/src/generics/index_map.rs Outdated Show resolved Hide resolved
crates/turbo-tasks/src/vc/cast.rs Show resolved Hide resolved
crates/turbo-tasks/src/vc/read.rs Outdated Show resolved Hide resolved
@alexkirsz alexkirsz force-pushed the alexkirsz/web-101-auto-generate-option-and-vec-types-for-values branch from 4ec13f0 to a0bef3d Compare August 17, 2023 08:52
@github-actions
Copy link
Contributor

Linux Benchmark for a82085d

Click to view benchmark
Test Base PR % Significant %
bench_hmr_to_commit/Turbopack CSR/1000 modules 5254.07µs ± 29.47µs 5265.25µs ± 24.34µs +0.21%
bench_hmr_to_eval/Turbopack CSR/1000 modules 4903.16µs ± 27.20µs 4927.14µs ± 15.36µs +0.49%
bench_startup/Turbopack CSR/1000 modules 989.66ms ± 0.88ms 996.06ms ± 2.83ms +0.65%

@github-actions
Copy link
Contributor

Linux Benchmark for 91ce054

Click to view benchmark
Test Base PR % Significant %
bench_hmr_to_commit/Turbopack CSR/1000 modules 5286.68µs ± 16.77µs 5341.59µs ± 26.83µs +1.04%
bench_hmr_to_eval/Turbopack CSR/1000 modules 4998.60µs ± 55.33µs 5209.81µs ± 221.01µs +4.23%
bench_startup/Turbopack CSR/1000 modules 992.64ms ± 4.31ms 1021.39ms ± 12.32ms +2.90%

@github-actions
Copy link
Contributor

MacOS Benchmark for 91ce054

Test Base PR % Significant %
bench_startup/Turbopack CSR/1000 modules 10.64s ± 0.69s 5912.97ms ± 853.82ms -44.44% -17.72%
Click to view full benchmark
Test Base PR % Significant %
bench_hmr_to_commit/Turbopack CSR/1000 modules 27.74ms ± 0.37ms 26.88ms ± 0.12ms -3.12%
bench_hmr_to_eval/Turbopack CSR/1000 modules 23.75ms ± 1.39ms 26.38ms ± 0.16ms +11.09%
bench_startup/Turbopack CSR/1000 modules 10.64s ± 0.69s 5912.97ms ± 853.82ms -44.44% -17.72%

.contains(&type_path.path.segments[0].ident.to_string())
{
// Replace the whole path with ()
*node = syn::parse_quote! { () };
Copy link
Member

Choose a reason for hiding this comment

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

We probably want to ensure that the generic type only appears in a VC<>

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I'm going to omit the Vc<T> from this macro, instead requiring the following:

__turbo_tasks_internal_generic_type!(<T>, Vec<T>);

Which would then be replaced with Vec<Vc<()>> or Vec<Vc<T>> depending on usage. This ensures the macro can't be used improperly.

I've also added validation to ensure that you can't add bounds to the generics param of this macro.

Comment on lines +14 to +18
#[turbo_tasks::function]
async fn index_map_len(index_map: Vc<IndexMap<Vc<()>, Vc<()>>>) -> Result<Vc<usize>> {
let index_map = index_map.await?;
Ok(Vc::cell(index_map.len()))
}
Copy link
Member

Choose a reason for hiding this comment

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

There is benefit of having a len() task. It can reduce the amount of recomputation.
map.await?.len() will invalidate the current task when anything inside the map changes. map.len().await? will only invalidate the current task when the length changes. So in the case of swapping one element with another one, it will have a benefit.
It's probably not very likely that changes to the map don't affect the length, but there is a possibility.
In case of is_empty is_none etc. it's far more likely to have bigger effect on invalidation. It makes sense to use when a task only depend on the existence of something.
Using these methods doesn't make sense when you read the map anyway after checking the result of one of these methods.

fn value_default() -> Vc<Self> {
// Safety: `index_map_default` creates an empty map, which is a valid
// representation of any index set of `Vc`.
unsafe { Vc::<Self>::from_repr(index_map_default()) }
Copy link
Member

Choose a reason for hiding this comment

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

Do we have the right attributes in place to ensure that all Vcs have the same binary representation?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I'm going to add #[repr(transparent)] to Vc<T>, which will ensure Vc<T> is always represented as a RawVc.

// Safety: see `Self::value_to_target` above.
unsafe {
std::mem::transmute_copy::<ManuallyDrop<Self::Target>, T>(&ManuallyDrop::new(target))
std::mem::transmute_copy::<ManuallyDrop<Self::Target>, Self::Repr>(&ManuallyDrop::new(
Copy link
Member

Choose a reason for hiding this comment

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

This sounds like Repr and Target should have a Copy trait bound

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I don't think this is a requirement for transmute_copy to work. We just need Self::Target and Self::Repr to have the same size to avoid undefined behaviors. Since VcValueType is an unsafe trait, this is the implementor's responsibility to ensure (which is mentioned in the trait doc).

Copy link

@orca-security-us orca-security-us bot left a comment

Choose a reason for hiding this comment

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

Orca Security Scan Summary

Status Check Issues by priority
Passed Passed Secrets high 0   medium 0   low 0   info 0 View in Orca

@github-actions
Copy link
Contributor

Linux Benchmark for ed35497

Click to view benchmark
Test Base PR % Significant %
bench_hmr_to_commit/Turbopack CSR/1000 modules 5403.69µs ± 27.79µs 5375.38µs ± 16.35µs -0.52%
bench_hmr_to_eval/Turbopack CSR/1000 modules 5036.15µs ± 16.98µs 5090.13µs ± 104.41µs +1.07%
bench_startup/Turbopack CSR/1000 modules 989.81ms ± 0.85ms 998.44ms ± 3.97ms +0.87%

@github-actions
Copy link
Contributor

Windows Benchmark for ed35497

Test Base PR % Significant %
bench_hmr_to_eval/Turbopack CSR/1000 modules 15.49ms ± 0.01ms 15.55ms ± 0.01ms +0.41% +0.15%
bench_startup/Turbopack CSR/1000 modules 3652.46ms ± 8.78ms 3750.44ms ± 30.31ms +2.68% +0.54%
Click to view full benchmark
Test Base PR % Significant %
bench_hmr_to_commit/Turbopack CSR/1000 modules 15.55ms ± 0.01ms 15.54ms ± 0.01ms -0.04%
bench_hmr_to_eval/Turbopack CSR/1000 modules 15.49ms ± 0.01ms 15.55ms ± 0.01ms +0.41% +0.15%
bench_startup/Turbopack CSR/1000 modules 3652.46ms ± 8.78ms 3750.44ms ± 30.31ms +2.68% +0.54%

@alexkirsz alexkirsz merged commit dd05689 into main Aug 24, 2023
50 of 52 checks passed
@alexkirsz alexkirsz deleted the alexkirsz/web-101-auto-generate-option-and-vec-types-for-values branch August 24, 2023 08:40
chris-olszewski pushed a commit that referenced this pull request Aug 24, 2023
### Description

This PR enables types generic over `Vc`s to work as value types.

In other words, where we would previously need to declare all
generic/container types over a given value type at the definition site,
like the following:

```rust
#[turbo_tasks::value]
struct Thing;

#[turbo_tasks::value(transparent)]
struct Things(Vec<Vc<Thing>>);

#[turbo_tasks::value(transparent)]
struct ThingOption(Option<Vc<Thing>>);

#[turbo_tasks::value(transparent)]
struct ThingSet(IndexSet<Vc<Thing>>);

#[turbo_tasks::value(transparent)]
struct ThingMap(IndexMap<Vc<ThingKey>, Vc<Thing>>);

let vec: Vc<Things> = Vc::cell(vec![Thing.cell()]);
let option: Vc<ThingOption> = Vc::cell(Some(Thing.cell()));

// etc.
```

We can now refer to `Vc<Vec<Vc<Thing>>>` directly, without needing to
declare an intermediate transparent value type:

```rust
#[turbo_tasks::value]
struct Thing;

let vec: Vc<Vec<_>> = Vc::cell(vec![Thing.cell()]);
let option: Vc<Option<_>> = Vc::cell(Some(Thing.cell()));
// etc.
```

The following generic types and methods are currently supported:
* `Option<Vc<T>>`
  * `::is_some(self: Vc<Self>) -> Vc<bool>`
  * `::is_none(self: Vc<Self>) -> Vc<bool>`
* `Vec<Vc<T>>`
  * `::is_empty(self: Vc<Self>) -> Vc<bool>`
  * `::len(self: Vc<Self>) -> Vc<usize>`
* `IndexSet<Vc<T>>`
  * `::is_empty(self: Vc<Self>) -> Vc<bool>`
  * `::len(self: Vc<Self>) -> Vc<usize>`
* `IndexMap<Vc<K>, Vc<V>>`
  * `::is_empty(self: Vc<Self>) -> Vc<bool>`
  * `::len(self: Vc<Self>) -> Vc<usize>`

All these value types also implement `ValueDefault`, which means that
you can instantiate them using `Default::default()` or `Vc::default()`:

```rust
let vec: Vc<Vec<Vc<u32>>> = Default::default()
```

They also work recursively, but I would recommend creating intermediate
types instead of this in most (all?) cases:

```rust
let vec: Vc<Vec<Vc<Vec<Vc<u32>>>>> = Default::default()
```

### Notes and implementation details

1. This only works when the generic type is wrapped in a `Vc`. In the
example above, this would not cover `Vc<Vec<Thing>>` directly. The
implementation relies on the fact that all `Type<Vc<T>>` are represented
the exact same way in memory, and as such can all be cast to some common
`Type<Vc<()>>` for storage.
2. Like primitives, these generic types can currently only be declared
in `turbo_tasks` itself. Technically, if a crate owns a type `A`, it
could also register `A` as a generic type, so we might want to allow
this in the future (e.g. `AliasMap` in `turbopack`?)
3. There's some potential performance/correctness issues around
`cell`ing, I'll defer to @sokra to figure out if this approach is worth
it.

### Testing Instructions

I added some tests to `all_in_one.rs`.

---------

Co-authored-by: Justin Ridgewell <justin@ridgewell.name>
Co-authored-by: Tobias Koppers <tobias.koppers@googlemail.com>
timneutkens pushed a commit to vercel/next.js that referenced this pull request Aug 25, 2023
* vercel/turbo#5723 <!-- Alex Kirszenberg - Misc
comments in turbo_tasks -->
* vercel/turbo#5714 <!-- OJ Kwon - test(ci):
update datadog-ci -->
* vercel/turbo#5705 <!-- Justin Ridgewell -
Transformation code necessary to support Server Actions -->
* vercel/turbo#5739 <!-- Justin Ridgewell -
Update rust toolchain -->
* vercel/turbo#5785 <!-- Tobias Koppers - add
evaluatables to chunk list ident -->
* vercel/turbo#5783 <!-- Tobias Koppers -
Tracing improvements -->
* vercel/turbo#5738 <!-- Alex Kirszenberg -
Generic types over Vcs -->
* vercel/turbo#5795 <!-- Leah - fix: snapshot
test path canonicalization -->
* vercel/turbo#5794 <!-- Tobias Koppers - fix
"any" context condition implementation -->
* vercel/turbo#5800 <!-- Tobias Koppers - add
middleware entry type -->
* vercel/turbo#5786 <!-- Tobias Koppers -
perform invalidation directly on writes -->

Closes WEB-1446
kodiakhq bot pushed a commit to timelessco/js-bottomsheet that referenced this pull request Sep 15, 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.14`](https://renovatebot.com/diffs/npm/turbo/1.10.13/1.10.14) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

### [`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)



#### What's Changed

##### Changelog

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

#### New Contributors

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

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

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/timelessco/js-bottomsheet).
renovate bot added a commit to fwouts/previewjs that referenced this pull request Sep 15, 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.14`](https://renovatebot.com/diffs/npm/turbo/1.10.13/1.10.14) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

#### New Contributors

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

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

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

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

This PR contains the following updates:

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

---

### Release Notes

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

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

#### New Contributors

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

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

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

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

---

### Release Notes

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

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

#### New Contributors

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

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

</details>

---

### Configuration

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

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

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

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

---

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

---

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

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

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

---

### Release Notes

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

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

#### New Contributors

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

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

</details>

---

### Configuration

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

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

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

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

---

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

---

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

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

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

---

### ⚠ Dependency Lookup Warnings ⚠

Warnings were logged while processing this repo. Please check the
Dependency Dashboard for more information.

---

### Release Notes

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

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

#### New Contributors

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

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

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

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

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

#### What's Changed

##### Changelog

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

#### New Contributors

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

**Full Changelog**:
vercel/turbo@v1.10.12...v1.10.13

</details>

---

### Configuration

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

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

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

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

---

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

---

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

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot pushed a commit to weareinreach/InReach that referenced this pull request Sep 18, 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 |
|---|---|---|---|---|---|
| [@aws-sdk/client-cognito-identity-provider](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-cognito-identity-provider) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | [`3.413.0` -> `3.414.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-cognito-identity-provider/3.413.0/3.414.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-cognito-identity-provider/3.414.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-cognito-identity-provider/3.414.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-cognito-identity-provider/3.413.0/3.414.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-cognito-identity-provider/3.413.0/3.414.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@babel/core](https://babel.dev/docs/en/next/babel-core) ([source](https://togithub.com/babel/babel)) | [`7.22.19` -> `7.22.20`](https://renovatebot.com/diffs/npm/@babel%2fcore/7.22.19/7.22.20) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@babel%2fcore/7.22.20?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@babel%2fcore/7.22.20?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@babel%2fcore/7.22.19/7.22.20?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@babel%2fcore/7.22.19/7.22.20?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@babel/preset-env](https://babel.dev/docs/en/next/babel-preset-env) ([source](https://togithub.com/babel/babel)) | [`7.22.15` -> `7.22.20`](https://renovatebot.com/diffs/npm/@babel%2fpreset-env/7.22.15/7.22.20) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@babel%2fpreset-env/7.22.20?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@babel%2fpreset-env/7.22.20?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@babel%2fpreset-env/7.22.15/7.22.20?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@babel%2fpreset-env/7.22.15/7.22.20?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@iconify-json/simple-icons](https://icon-sets.iconify.design/simple-icons/) | [`1.1.70` -> `1.1.71`](https://renovatebot.com/diffs/npm/@iconify-json%2fsimple-icons/1.1.70/1.1.71) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@iconify-json%2fsimple-icons/1.1.71?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@iconify-json%2fsimple-icons/1.1.71?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@iconify-json%2fsimple-icons/1.1.70/1.1.71?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@iconify-json%2fsimple-icons/1.1.70/1.1.71?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@iconify/utils](https://iconify.design/docs/libraries/utils/) ([source](https://togithub.com/iconify/iconify)) | [`2.1.9` -> `2.1.10`](https://renovatebot.com/diffs/npm/@iconify%2futils/2.1.9/2.1.10) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@iconify%2futils/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@iconify%2futils/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@iconify%2futils/2.1.9/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@iconify%2futils/2.1.9/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/carousel](https://mantine.dev/others/carousel/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fcarousel/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fcarousel/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fcarousel/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fcarousel/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fcarousel/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/core](https://mantine.dev/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fcore/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fcore/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fcore/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fcore/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fcore/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/dates](https://mantine.dev/dates/getting-started/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fdates/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fdates/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fdates/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fdates/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fdates/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/dropzone](https://mantine.dev/others/dropzone/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fdropzone/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fdropzone/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fdropzone/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fdropzone/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fdropzone/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/form](https://mantine.dev/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fform/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fform/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fform/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fform/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fform/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/hooks](https://mantine.dev/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fhooks/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fhooks/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fhooks/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fhooks/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fhooks/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/modals](https://mantine.dev/others/modals/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fmodals/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fmodals/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fmodals/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fmodals/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fmodals/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/next](https://mantine.dev/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fnext/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fnext/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fnext/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fnext/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fnext/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/notifications](https://mantine.dev/others/notifications/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fnotifications/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fnotifications/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fnotifications/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fnotifications/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fnotifications/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/nprogress](https://mantine.dev/others/nprogress/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fnprogress/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fnprogress/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fnprogress/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fnprogress/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fnprogress/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/prism](https://mantine.dev/others/prism/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fprism/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fprism/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fprism/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fprism/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fprism/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/spotlight](https://mantine.dev/others/spotlight/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fspotlight/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fspotlight/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fspotlight/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fspotlight/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fspotlight/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/tiptap](https://mantine.dev/others/tiptap) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2ftiptap/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2ftiptap/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2ftiptap/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2ftiptap/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2ftiptap/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/utils](https://mantine.dev/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2futils/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2futils/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2futils/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2futils/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2futils/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@tanstack/react-table](https://togithub.com/tanstack/table) | [`8.9.10` -> `8.10.0`](https://renovatebot.com/diffs/npm/@tanstack%2freact-table/8.9.10/8.10.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tanstack%2freact-table/8.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@tanstack%2freact-table/8.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@tanstack%2freact-table/8.9.10/8.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tanstack%2freact-table/8.9.10/8.10.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@tiptap/extension-link](https://tiptap.dev) ([source](https://togithub.com/ueberdosis/tiptap)) | [`2.1.9` -> `2.1.10`](https://renovatebot.com/diffs/npm/@tiptap%2fextension-link/2.1.9/2.1.10) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fextension-link/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@tiptap%2fextension-link/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@tiptap%2fextension-link/2.1.9/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fextension-link/2.1.9/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@tiptap/react](https://tiptap.dev) ([source](https://togithub.com/ueberdosis/tiptap)) | [`2.1.9` -> `2.1.10`](https://renovatebot.com/diffs/npm/@tiptap%2freact/2.1.9/2.1.10) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2freact/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@tiptap%2freact/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@tiptap%2freact/2.1.9/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2freact/2.1.9/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@tiptap/starter-kit](https://tiptap.dev) ([source](https://togithub.com/ueberdosis/tiptap)) | [`2.1.9` -> `2.1.10`](https://renovatebot.com/diffs/npm/@tiptap%2fstarter-kit/2.1.9/2.1.10) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fstarter-kit/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@tiptap%2fstarter-kit/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@tiptap%2fstarter-kit/2.1.9/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fstarter-kit/2.1.9/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@turbo/gen](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.13` -> `1.10.14`](https://renovatebot.com/diffs/npm/@turbo%2fgen/1.10.13/1.10.14) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@turbo%2fgen/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@turbo%2fgen/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@turbo%2fgen/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@turbo%2fgen/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/babel__core](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel__core) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`7.20.1` -> `7.20.2`](https://renovatebot.com/diffs/npm/@types%2fbabel__core/7.20.1/7.20.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fbabel__core/7.20.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fbabel__core/7.20.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fbabel__core/7.20.1/7.20.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fbabel__core/7.20.1/7.20.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/babel__preset-env](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/babel__preset-env) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`7.9.2` -> `7.9.3`](https://renovatebot.com/diffs/npm/@types%2fbabel__preset-env/7.9.2/7.9.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fbabel__preset-env/7.9.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fbabel__preset-env/7.9.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fbabel__preset-env/7.9.2/7.9.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fbabel__preset-env/7.9.2/7.9.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/google.maps](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/google.maps) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`3.54.0` -> `3.54.1`](https://renovatebot.com/diffs/npm/@types%2fgoogle.maps/3.54.0/3.54.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fgoogle.maps/3.54.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fgoogle.maps/3.54.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fgoogle.maps/3.54.0/3.54.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fgoogle.maps/3.54.0/3.54.1?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.17.16` -> `18.17.17`](https://renovatebot.com/diffs/npm/@types%2fnode/18.17.16/18.17.17) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/18.17.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/18.17.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/18.17.16/18.17.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/18.17.16/18.17.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-plugin-turbo](https://togithub.com/vercel/turbo) | [`1.10.13` -> `1.10.14`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/1.10.13/1.10.14) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-plugin-turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-plugin-turbo/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-plugin-turbo/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [pnpm](https://pnpm.io) ([source](https://togithub.com/pnpm/pnpm)) | [`8.7.5` -> `8.7.6`](https://renovatebot.com/diffs/npm/pnpm/8.7.5/8.7.6) | [![age](https://developer.mend.io/api/mc/badges/age/npm/pnpm/8.7.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/pnpm/8.7.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/pnpm/8.7.5/8.7.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/pnpm/8.7.5/8.7.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.13` -> `1.10.14`](https://renovatebot.com/diffs/npm/turbo/1.10.13/1.10.14) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>aws/aws-sdk-js-v3 (@&#8203;aws-sdk/client-cognito-identity-provider)</summary>

### [`v3.414.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-cognito-identity-provider/CHANGELOG.md#34140-2023-09-15)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.413.0...v3.414.0)

##### Features

-   **region-config:** add aws region runtime extension codegen ([#&#8203;5157](https://togithub.com/aws/aws-sdk-js-v3/issues/5157)) ([b9d59e8](https://togithub.com/aws/aws-sdk-js-v3/commit/b9d59e81696f9628c6502473bb01a2d1a617e928))

</details>

<details>
<summary>babel/babel (@&#8203;babel/core)</summary>

### [`v7.22.20`](https://togithub.com/babel/babel/blob/HEAD/CHANGELOG.md#v72220-2023-09-16)

[Compare Source](https://togithub.com/babel/babel/compare/v7.22.19...v7.22.20)

##### :house: Internal

-   `babel-helper-validator-identifier`
    -   [#&#8203;15973](https://togithub.com/babel/babel/pull/15973) Remove special-casing of U+200C and U+200D ([@&#8203;nicolo-ribaudo](https://togithub.com/nicolo-ribaudo))
-   `babel-plugin-transform-dotall-regex`
    -   [#&#8203;15974](https://togithub.com/babel/babel/pull/15974) Update Unicode test fixtures ([@&#8203;JLHwung](https://togithub.com/JLHwung))

##### :leftwards_arrow_with_hook: Revert

-   `babel-helper-remap-async-to-generator`, `babel-helper-wrap-function`, `babel-plugin-proposal-explicit-resource-management`, `babel-plugin-proposal-function-sent`, `babel-plugin-transform-async-generator-functions`, `babel-plugin-transform-async-to-generator`, `babel-plugin-transform-block-scoping`, `babel-plugin-transform-class-properties`, `babel-plugin-transform-classes`, `babel-plugin-transform-parameters`, `babel-plugin-transform-runtime`, `babel-preset-env`
    -   [#&#8203;15979](https://togithub.com/babel/babel/pull/15979) Revert "Improve output when wrapping functions" ([@&#8203;jjonescz](https://togithub.com/jjonescz))

</details>

<details>
<summary>mantinedev/mantine (@&#8203;mantine/carousel)</summary>

### [`v6.0.21`](https://togithub.com/mantinedev/mantine/releases/tag/6.0.21)

[Compare Source](https://togithub.com/mantinedev/mantine/compare/6.0.20...6.0.21)

##### Last 6.x patch

This is the last patch for 6.x (at least for a while), next version that will be released is 7.0.0. If you haven't checked v7 yet, you can review it here – https://v7.mantine.dev/

##### What's Changed

-   `[@mantine/core]` Fix Radio and Checkbox components do not receive padding when a value of 0 is passed into the label prop ([#&#8203;4755](https://togithub.com/mantinedev/mantine/issues/4755))
-   `[@mantine/dates]` Fix incorrect accessible name set on DatePickerInput and other similar components ([#&#8203;4750](https://togithub.com/mantinedev/mantine/issues/4750))

##### New Contributors

-   [@&#8203;qaynam](https://togithub.com/qaynam) made their first contribution in [https://github.com/mantinedev/mantine/pull/4755](https://togithub.com/mantinedev/mantine/pull/4755)

**Full Changelog**: https://github.com/mantinedev/mantine/compare/6.0.20...6.0.21

</details>

<details>
<summary>tanstack/table (@&#8203;tanstack/react-table)</summary>

### [`v8.10.0`](https://togithub.com/TanStack/table/releases/tag/v8.10.0)

[Compare Source](https://togithub.com/tanstack/table/compare/v8.9.11...v8.10.0)

Version 8.10.0 - 9/17/2023, 12:58 AM

#### Changes

##### Feat

-   Row Pinning ([#&#8203;5074](https://togithub.com/tanstack/table/issues/5074)) ([`15a425a`](https://togithub.com/tanstack/table/commit/15a425af)) by [@&#8203;KevinVandy](https://togithub.com/KevinVandy)

#### Packages

-   [@&#8203;tanstack/table-core](https://togithub.com/tanstack/table-core)[@&#8203;8](https://togithub.com/8).10.0
-   [@&#8203;tanstack/react-table](https://togithub.com/tanstack/react-table)[@&#8203;8](https://togithub.com/8).10.0
-   [@&#8203;tanstack/solid-table](https://togithub.com/tanstack/solid-table)[@&#8203;8](https://togithub.com/8).10.0
-   [@&#8203;tanstack/vue-table](https://togithub.com/tanstack/vue-table)[@&#8203;8](https://togithub.com/8).10.0
-   [@&#8203;tanstack/svelte-table](https://togithub.com/tanstack/svelte-table)[@&#8203;8](https://togithub.com/8).10.0

### [`v8.9.11`](https://togithub.com/TanStack/table/releases/tag/v8.9.11)

[Compare Source](https://togithub.com/tanstack/table/compare/v8.9.10...v8.9.11)

Version 8.9.11 - 9/15/2023, 4:49 PM

#### Changes

##### Fix

-   limit deep keys even more ([`51214a8`](https://togithub.com/tanstack/table/commit/51214a88)) by Tanner Linsley

##### Chore

-   add more tests for row selection functions ([#&#8203;5072](https://togithub.com/tanstack/table/issues/5072)) ([`31871e9`](https://togithub.com/tanstack/table/commit/31871e9d)) by [@&#8203;KevinVandy](https://togithub.com/KevinVandy)

#### Packages

-   [@&#8203;tanstack/table-core](https://togithub.com/tanstack/table-core)[@&#8203;8](https://togithub.com/8).9.11
-   [@&#8203;tanstack/react-table](https://togithub.com/tanstack/react-table)[@&#8203;8](https://togithub.com/8).9.11
-   [@&#8203;tanstack/solid-table](https://togithub.com/tanstack/solid-table)[@&#8203;8](https://togithub.com/8).9.11
-   [@&#8203;tanstack/vue-table](https://togithub.com/tanstack/vue-table)[@&#8203;8](https://togithub.com/8).9.11
-   [@&#8203;tanstack/svelte-table](https://togithub.com/tanstack/svelte-table)[@&#8203;8](https://togithub.com/8).9.11

</details>

<details>
<summary>ueberdosis/tiptap (@&#8203;tiptap/extension-link)</summary>

### [`v2.1.10`](https://togithub.com/ueberdosis/tiptap/blob/HEAD/packages/extension-link/CHANGELOG.md#2110-2023-09-15)

[Compare Source](https://togithub.com/ueberdosis/tiptap/compare/v2.1.9...v2.1.10)

**Note:** Version bump only for package [@&#8203;tiptap/extension-link](https://togithub.com/tiptap/extension-link)

</details>

<details>
<summary>ueberdosis/tiptap (@&#8203;tiptap/react)</summary>

### [`v2.1.10`](https://togithub.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#2110-2023-09-15)

[Compare Source](https://togithub.com/ueberdosis/tiptap/compare/v2.1.9...v2.1.10)

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

</details>

<details>
<summary>ueberdosis/tiptap (@&#8203;tiptap/starter-kit)</summary>

### [`v2.1.10`](https://togithub.com/ueberdosis/tiptap/blob/HEAD/packages/starter-kit/CHANGELOG.md#2110-2023-09-15)

[Compare Source](https://togithub.com/ueberdosis/tiptap/compare/v2.1.9...v2.1.10)

**Note:** Version bump only for package [@&#8203;tiptap/starter-kit](https://togithub.com/tiptap/starter-kit)

</details>

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

### [`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)



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

<details>
<summary>pnpm/pnpm (pnpm)</summary>

### [`v8.7.6`](https://togithub.com/pnpm/pnpm/releases/tag/v8.7.6)

[Compare Source](https://togithub.com/pnpm/pnpm/compare/v8.7.5...v8.7.6)

#### Patch Changes

-   Don't run the `prepublishOnly` scripts of git-hosted dependencies [#&#8203;7026](https://togithub.com/pnpm/pnpm/issues/7026).
-   Fix a bug in which `use-node-version` or `node-version` isn't passed down to `checkEngine` when using pnpm workspace, resulting in an error [#&#8203;6981](https://togithub.com/pnpm/pnpm/issues/6981).
-   Don't print out each deprecated subdependency separately with its deprecation message. Just print out a summary of all the deprecated subdependencies [#&#8203;6707](https://togithub.com/pnpm/pnpm/issues/6707).
-   Fixed an ENOENT error that was sometimes happening during install with "hoisted" `node_modules` [#&#8203;6756](https://togithub.com/pnpm/pnpm/issues/6756).

#### Our Gold Sponsors

<table>
  <tbody>
    <tr>
      <td align="center" valign="middle">
        <a href="https://bit.dev/?utm_source=pnpm&utm_medium=release_notes" target="_blank"><img src="https://pnpm.io/img/users/bit.svg" width="80"></a>
      </td>
      <td align="center" valign="middle">
        <a href="https://novu.co/?utm_source=pnpm&utm_medium=release_notes" target="_blank">
          <picture>
            <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/novu.svg" />
            <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/novu_light.svg" />
            <img src="https://pnpm.io/img/users/novu.svg" width="180" />
          </picture>
        </a>
      </td>
    </tr>
    <tr>
      <td align="center" valign="middle">
        <a href="https://prisma.io/?utm_source=pnpm&utm_medium=release_notes" target="_blank">
          <picture>
            <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/prisma.svg" />
            <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/prisma_light.svg" />
            <img src="https://pnpm.io/img/users/prisma.svg" width="180" />
          </picture>
        </a>
      </td>
      <td align="center" valign="middle">
        <a href="https://www.flightcontrol.dev/?ref=pnpm" target="_blank"><img src="https://pnpm.io/img/users/flightcontrol.svg" width="240"></a>
      </td>
    </tr>
  </tbody>
</table>

#### Our Silver Sponsors

<table>
  <tbody>
    <tr>
      <td align="center" valign="middle">
        <a href="https://leniolabs.com/?utm_source=pnpm&utm_medium=release_notes" target="_blank">
          <img src="https://pnpm.io/img/users/leniolabs.jpg" width="80">
        </a>
      </td>
      <td align="center" valign="middle">
        <a href="https://vercel.com/?utm_source=pnpm&utm_medium=release_notes" target="_blank">
          <picture>
            <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/vercel.svg" />
            <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/vercel_light.svg" />
            <img src="https://pnpm.io/img/users/vercel.svg" width="180" />
          </picture>
        </a>
      </td>
    </tr>
    <tr>
      <td align="center" valign="middle">
        <a href="https://depot.dev/?utm_source=pnpm&utm_medium=release_notes" target="_blank">
          <picture>
            <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/depot.svg" />
            <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/depot_light.svg" />
            <img src="https://pnpm.io/img/users/depot.svg" width="200" />
          </picture>
        </a>
      </td>
      <td align="center" valign="middle">
        <a href="https://moonrepo.dev/?utm_source=pnpm&utm_medium=release_notes" target="_blank">
          <picture>
            <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/moonrepo.svg" />
            <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/moonrepo_light.svg" />
            <img src="https://pnpm.io/img/users/moonrepo.svg" width="200" />
          </picture>
        </a>
      </td>
    </tr>
    <tr>
      <td align="center" valign="middle">
        <a href="https://www.thinkmill.com.au/?ut

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



PR-URL: https://github.com/weareinreach/InReach/pull/769
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot added a commit to weareinreach/TransMascFutures that referenced this pull request Sep 18, 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 |
|---|---|---|---|---|---|
| [@mantine/carousel](https://mantine.dev/others/carousel/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fcarousel/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fcarousel/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fcarousel/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fcarousel/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fcarousel/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/core](https://mantine.dev/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fcore/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fcore/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fcore/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fcore/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fcore/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/dates](https://mantine.dev/dates/getting-started/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fdates/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fdates/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fdates/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fdates/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fdates/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/dropzone](https://mantine.dev/others/dropzone/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fdropzone/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fdropzone/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fdropzone/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fdropzone/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fdropzone/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/form](https://mantine.dev/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fform/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fform/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fform/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fform/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fform/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/hooks](https://mantine.dev/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fhooks/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fhooks/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fhooks/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fhooks/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fhooks/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/modals](https://mantine.dev/others/modals/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fmodals/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fmodals/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fmodals/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fmodals/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fmodals/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/next](https://mantine.dev/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fnext/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fnext/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fnext/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fnext/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fnext/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/notifications](https://mantine.dev/others/notifications/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fnotifications/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fnotifications/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fnotifications/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fnotifications/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fnotifications/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/nprogress](https://mantine.dev/others/nprogress/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fnprogress/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fnprogress/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fnprogress/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fnprogress/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fnprogress/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/prism](https://mantine.dev/others/prism/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fprism/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fprism/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fprism/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fprism/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fprism/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/spotlight](https://mantine.dev/others/spotlight/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2fspotlight/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2fspotlight/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2fspotlight/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2fspotlight/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2fspotlight/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/tiptap](https://mantine.dev/others/tiptap) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2ftiptap/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2ftiptap/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2ftiptap/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2ftiptap/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2ftiptap/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@mantine/utils](https://mantine.dev/) ([source](https://togithub.com/mantinedev/mantine)) | [`6.0.20` -> `6.0.21`](https://renovatebot.com/diffs/npm/@mantine%2futils/6.0.20/6.0.21) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@mantine%2futils/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@mantine%2futils/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@mantine%2futils/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@mantine%2futils/6.0.20/6.0.21?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@tiptap/extension-link](https://tiptap.dev) ([source](https://togithub.com/ueberdosis/tiptap)) | [`2.1.9` -> `2.1.10`](https://renovatebot.com/diffs/npm/@tiptap%2fextension-link/2.1.9/2.1.10) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fextension-link/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@tiptap%2fextension-link/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@tiptap%2fextension-link/2.1.9/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fextension-link/2.1.9/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@tiptap/react](https://tiptap.dev) ([source](https://togithub.com/ueberdosis/tiptap)) | [`2.1.9` -> `2.1.10`](https://renovatebot.com/diffs/npm/@tiptap%2freact/2.1.9/2.1.10) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2freact/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@tiptap%2freact/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@tiptap%2freact/2.1.9/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2freact/2.1.9/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@tiptap/starter-kit](https://tiptap.dev) ([source](https://togithub.com/ueberdosis/tiptap)) | [`2.1.9` -> `2.1.10`](https://renovatebot.com/diffs/npm/@tiptap%2fstarter-kit/2.1.9/2.1.10) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tiptap%2fstarter-kit/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@tiptap%2fstarter-kit/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@tiptap%2fstarter-kit/2.1.9/2.1.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tiptap%2fstarter-kit/2.1.9/2.1.10?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.17.16` -> `18.17.17`](https://renovatebot.com/diffs/npm/@types%2fnode/18.17.16/18.17.17) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/18.17.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/18.17.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/18.17.16/18.17.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/18.17.16/18.17.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-plugin-turbo](https://togithub.com/vercel/turbo) | [`1.10.13` -> `1.10.14`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/1.10.13/1.10.14) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-plugin-turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-plugin-turbo/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-plugin-turbo/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [pnpm](https://pnpm.io) ([source](https://togithub.com/pnpm/pnpm)) | [`8.7.5` -> `8.7.6`](https://renovatebot.com/diffs/npm/pnpm/8.7.5/8.7.6) | [![age](https://developer.mend.io/api/mc/badges/age/npm/pnpm/8.7.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/pnpm/8.7.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/pnpm/8.7.5/8.7.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/pnpm/8.7.5/8.7.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.13` -> `1.10.14`](https://renovatebot.com/diffs/npm/turbo/1.10.13/1.10.14) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>mantinedev/mantine (@&#8203;mantine/carousel)</summary>

### [`v6.0.21`](https://togithub.com/mantinedev/mantine/releases/tag/6.0.21)

[Compare Source](https://togithub.com/mantinedev/mantine/compare/6.0.20...6.0.21)

##### Last 6.x patch

This is the last patch for 6.x (at least for a while), next version that will be released is 7.0.0. If you haven't checked v7 yet, you can review it here – https://v7.mantine.dev/

##### What's Changed

-   `[@mantine/core]` Fix Radio and Checkbox components do not receive padding when a value of 0 is passed into the label prop ([#&#8203;4755](https://togithub.com/mantinedev/mantine/issues/4755))
-   `[@mantine/dates]` Fix incorrect accessible name set on DatePickerInput and other similar components ([#&#8203;4750](https://togithub.com/mantinedev/mantine/issues/4750))

##### New Contributors

-   [@&#8203;qaynam](https://togithub.com/qaynam) made their first contribution in [mantinedev/mantine#4755

**Full Changelog**: mantinedev/mantine@6.0.20...6.0.21

</details>

<details>
<summary>ueberdosis/tiptap (@&#8203;tiptap/extension-link)</summary>

### [`v2.1.10`](https://togithub.com/ueberdosis/tiptap/blob/HEAD/packages/extension-link/CHANGELOG.md#2110-2023-09-15)

[Compare Source](https://togithub.com/ueberdosis/tiptap/compare/v2.1.9...v2.1.10)

**Note:** Version bump only for package [@&#8203;tiptap/extension-link](https://togithub.com/tiptap/extension-link)

</details>

<details>
<summary>ueberdosis/tiptap (@&#8203;tiptap/react)</summary>

### [`v2.1.10`](https://togithub.com/ueberdosis/tiptap/blob/HEAD/packages/react/CHANGELOG.md#2110-2023-09-15)

[Compare Source](https://togithub.com/ueberdosis/tiptap/compare/v2.1.9...v2.1.10)

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

</details>

<details>
<summary>ueberdosis/tiptap (@&#8203;tiptap/starter-kit)</summary>

### [`v2.1.10`](https://togithub.com/ueberdosis/tiptap/blob/HEAD/packages/starter-kit/CHANGELOG.md#2110-2023-09-15)

[Compare Source](https://togithub.com/ueberdosis/tiptap/compare/v2.1.9...v2.1.10)

**Note:** Version bump only for package [@&#8203;tiptap/starter-kit](https://togithub.com/tiptap/starter-kit)

</details>

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

### [`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)



##### What's Changed

##### Changelog

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

##### New Contributors

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

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

</details>

<details>
<summary>pnpm/pnpm (pnpm)</summary>

### [`v8.7.6`](https://togithub.com/pnpm/pnpm/releases/tag/v8.7.6)

[Compare Source](https://togithub.com/pnpm/pnpm/compare/v8.7.5...v8.7.6)

#### Patch Changes

-   Don't run the `prepublishOnly` scripts of git-hosted dependencies [#&#8203;7026](https://togithub.com/pnpm/pnpm/issues/7026).
-   Fix a bug in which `use-node-version` or `node-version` isn't passed down to `checkEngine` when using pnpm workspace, resulting in an error [#&#8203;6981](https://togithub.com/pnpm/pnpm/issues/6981).
-   Don't print out each deprecated subdependency separately with its deprecation message. Just print out a summary of all the deprecated subdependencies [#&#8203;6707](https://togithub.com/pnpm/pnpm/issues/6707).
-   Fixed an ENOENT error that was sometimes happening during install with "hoisted" `node_modules` [#&#8203;6756](https://togithub.com/pnpm/pnpm/issues/6756).

#### Our Gold Sponsors

<table>
  <tbody>
    <tr>
      <td align="center" valign="middle">
        <a href="https://bit.dev/?utm_source=pnpm&utm_medium=release_notes" target="_blank"><img src="https://pnpm.io/img/users/bit.svg" width="80"></a>
      </td>
      <td align="center" valign="middle">
        <a href="https://novu.co/?utm_source=pnpm&utm_medium=release_notes" target="_blank">
          <picture>
            <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/novu.svg" />
            <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/novu_light.svg" />
            <img src="https://pnpm.io/img/users/novu.svg" width="180" />
          </picture>
        </a>
      </td>
    </tr>
    <tr>
      <td align="center" valign="middle">
        <a href="https://prisma.io/?utm_source=pnpm&utm_medium=release_notes" target="_blank">
          <picture>
            <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/prisma.svg" />
            <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/prisma_light.svg" />
            <img src="https://pnpm.io/img/users/prisma.svg" width="180" />
          </picture>
        </a>
      </td>
      <td align="center" valign="middle">
        <a href="https://www.flightcontrol.dev/?ref=pnpm" target="_blank"><img src="https://pnpm.io/img/users/flightcontrol.svg" width="240"></a>
      </td>
    </tr>
  </tbody>
</table>

#### Our Silver Sponsors

<table>
  <tbody>
    <tr>
      <td align="center" valign="middle">
        <a href="https://leniolabs.com/?utm_source=pnpm&utm_medium=release_notes" target="_blank">
          <img src="https://pnpm.io/img/users/leniolabs.jpg" width="80">
        </a>
      </td>
      <td align="center" valign="middle">
        <a href="https://vercel.com/?utm_source=pnpm&utm_medium=release_notes" target="_blank">
          <picture>
            <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/vercel.svg" />
            <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/vercel_light.svg" />
            <img src="https://pnpm.io/img/users/vercel.svg" width="180" />
          </picture>
        </a>
      </td>
    </tr>
    <tr>
      <td align="center" valign="middle">
        <a href="https://depot.dev/?utm_source=pnpm&utm_medium=release_notes" target="_blank">
          <picture>
            <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/depot.svg" />
            <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/depot_light.svg" />
            <img src="https://pnpm.io/img/users/depot.svg" width="200" />
          </picture>
        </a>
      </td>
      <td align="center" valign="middle">
        <a href="https://moonrepo.dev/?utm_source=pnpm&utm_medium=release_notes" target="_blank">
          <picture>
            <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/moonrepo.svg" />
            <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/moonrepo_light.svg" />
            <img src="https://pnpm.io/img/users/moonrepo.svg" width="200" />
          </picture>
        </a>
      </td>
    </tr>
    <tr>
      <td align="center" valign="middle">
        <a href="https://www.thinkmill.com.au/?utm_source=pnpm&utm_medium=release_notes" target="_blank">
          <picture>
            <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/thinkmill.svg" />
            <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/thinkmill_light.svg" />
            <img src="https://pnpm.io/img/users/thinkmill.svg" width="200" />
          </picture>
        </a>
      </td>
      <td align="center" valign="middle">
        <a href="https://devowl.io/?utm_source=pnpm&utm_medium=release_notes" target="_blank">
          <picture>
            <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/devowlio.svg" />
            <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/devowlio.svg" />
            <img src="https://pnpm.io/img/users/devowlio.svg" width="200" />
          </picture>
        </a>
      </td>
    </tr>
  </tbody>
</table>

</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: #175
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot pushed a commit to timelessco/node-ts-app that referenced this pull request Sep 24, 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 |
|---|---|---|---|---|---|
| [@release-it/conventional-changelog](https://togithub.com/release-it/conventional-changelog) | [`7.0.1` -> `7.0.2`](https://renovatebot.com/diffs/npm/@release-it%2fconventional-changelog/7.0.1/7.0.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@release-it%2fconventional-changelog/7.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@release-it%2fconventional-changelog/7.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@release-it%2fconventional-changelog/7.0.1/7.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@release-it%2fconventional-changelog/7.0.1/7.0.2?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)) | [`20.6.0` -> `20.6.3`](https://renovatebot.com/diffs/npm/@types%2fnode/20.6.0/20.6.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.6.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.6.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.6.0/20.6.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.6.0/20.6.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-config-canonical](https://togithub.com/gajus/eslint-config-canonical) | [`41.1.7` -> `41.2.2`](https://renovatebot.com/diffs/npm/eslint-config-canonical/41.1.7/41.2.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-canonical/41.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-canonical/41.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-canonical/41.1.7/41.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-canonical/41.1.7/41.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [knip](https://togithub.com/webpro/knip) | [`2.24.1` -> `2.25.2`](https://renovatebot.com/diffs/npm/knip/2.24.1/2.25.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/knip/2.25.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/knip/2.25.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/knip/2.24.1/2.25.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/knip/2.24.1/2.25.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [markdownlint](https://togithub.com/DavidAnson/markdownlint) | [`0.31.0` -> `0.31.1`](https://renovatebot.com/diffs/npm/markdownlint/0.31.0/0.31.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/markdownlint/0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/markdownlint/0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/markdownlint/0.31.0/0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/markdownlint/0.31.0/0.31.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.13` -> `1.10.14`](https://renovatebot.com/diffs/npm/turbo/1.10.13/1.10.14) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>release-it/conventional-changelog (@&#8203;release-it/conventional-changelog)</summary>

### [`v7.0.2`](https://togithub.com/release-it/conventional-changelog/releases/tag/7.0.2)

[Compare Source](https://togithub.com/release-it/conventional-changelog/compare/7.0.1...7.0.2)

-   Upgrade conventional-changelog to 5.1.0 ([#&#8203;75](https://togithub.com/release-it/conventional-changelog/issues/75)) ([`bdd80bd`](https://togithub.com/release-it/conventional-changelog/commit/bdd80bd))
-   Fix `preset` → `preset.name` in readme ([`fa034ed`](https://togithub.com/release-it/conventional-changelog/commit/fa034ed))

</details>

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

</details>

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

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.25.1...2.25.2)

-   Clarify debug log message ([`5e37152`](https://togithub.com/webpro/knip/commit/5e37152))
-   Simplify array.from+map ([#&#8203;246](https://togithub.com/webpro/knip/issues/246)) ([`63403d4`](https://togithub.com/webpro/knip/commit/63403d4))
-   Simplify map+flat call ([#&#8203;245](https://togithub.com/webpro/knip/issues/245)) ([`77887a5`](https://togithub.com/webpro/knip/commit/77887a5))

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.25.0...2.25.1)

-   Fix typed peer dep + improve some peer/host namings (fixes [#&#8203;239](https://togithub.com/webpro/knip/issues/239)) ([`ef94f5b`](https://togithub.com/webpro/knip/commit/ef94f5b))

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.24.1...2.25.0)

-   Do not return `react` as a dependency for `jsx: preserve/none` in typescript plugin ([#&#8203;226](https://togithub.com/webpro/knip/issues/226)) ([`37b9e81`](https://togithub.com/webpro/knip/commit/37b9e81))
-   Update dependencies ([`ccd3613`](https://togithub.com/webpro/knip/commit/ccd3613))
-   Use `rootDir` option in jest plugin (fixes [#&#8203;240](https://togithub.com/webpro/knip/issues/240)) ([`2f58848`](https://togithub.com/webpro/knip/commit/2f58848))
-   Add nx binaries resolver (resolves [#&#8203;243](https://togithub.com/webpro/knip/issues/243)) ([`5ba99e7`](https://togithub.com/webpro/knip/commit/5ba99e7))
-   Don't throw for invalid tags in getJSDocTags (fixes [#&#8203;242](https://togithub.com/webpro/knip/issues/242)) ([`d17371b`](https://togithub.com/webpro/knip/commit/d17371b))

</details>

<details>
<summary>DavidAnson/markdownlint (markdownlint)</summary>

### [`v0.31.1`](https://togithub.com/DavidAnson/markdownlint/blob/HEAD/CHANGELOG.md#0311)

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

-   Improve MD032/MD034
-   Update dependencies

</details>

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

### [`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)



#### What's Changed

##### Changelog

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

#### New Contributors

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

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

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/timelessco/node-ts-app).
sungik-choi pushed a commit to channel-io/bezier-react that referenced this pull request Sep 26, 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.14`](https://renovatebot.com/diffs/npm/turbo/1.10.13/1.10.14) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.13/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

#### New Contributors

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

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

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

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

---

### Release Notes

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

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

#### New Contributors

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

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

</details>

---

### Configuration

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

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

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

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

---

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

---

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

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

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

---

### Release Notes

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

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

#### New Contributors

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

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

</details>

---

### Configuration

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

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

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

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

---

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

---

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

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Ben Elan <no-reply@benelan.dev>
kodiakhq bot pushed a commit to X-oss-byte/Nextjs that referenced this pull request Sep 27, 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.9` -> `1.10.14`](https://renovatebot.com/diffs/npm/turbo/1.10.9/1.10.14) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.9/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.9/1.10.14?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

### [`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)



#### What's Changed

##### Changelog

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

#### New Contributors

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

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

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

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



#### What's Changed

##### Changelog

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

#### New Contributors

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

**Full Changelog**: vercel/turbo@v1.10.12...v1.10.13

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

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



#### What's Changed

##### Changelog

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

**Full Changelog**: vercel/turbo@v1.10.11...v1.10.12

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

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



#### What's Changed

##### Changelog

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

**Full Changelog**: vercel/turbo@v1.10.10...v1.10.11

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

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



#### What's Changed

##### Changelog

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

**Full Changelog**: vercel/turbo@v1.10.9...v1.10.10

</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).
bodinsamuel pushed a commit to specfy/specfy that referenced this pull request Nov 3, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

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

---

### Release Notes

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

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

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

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

##### What's Changed

##### Changelog

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

##### New Contributors

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

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

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

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

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

##### What's Changed

##### Changelog

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

##### New Contributors

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

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

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

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

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

#### What's Changed

##### Changelog

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

#### New Contributors

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

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

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

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

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

Successfully merging this pull request may close these issues.

None yet

5 participants