Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

fix: pnpm alias workspace deps #5569

Merged
merged 2 commits into from
Jul 20, 2023
Merged

Conversation

chris-olszewski
Copy link
Contributor

Description

Fixes #5441

Adds support for referencing workspaces through aliases by properly resolving them to the correct workspace. Before we would mark a package as being an external dependency (or if the alias was a valid workspace depend on the incorrect one).

This PR now recognizes when workspace: dependency references a different package than the name that's used in the package.json.

Note for reviewers:
This probably isn't the cleanest solution in either Rust or Go, but while we need to maintain two codepaths this keeps the code roughly equivalent.

Testing Instructions

Added unit tests on the Go side.

Tested manually with a repository where web specified it's dependency on @scope/ui as `"ui": "workspace:@scope/ui@*" and verified that:

  • turbo run build: @scope/ui finished building before building web, this hits the Go impl
  • turbo prune --scope=web: @scope/ui was included in the pruned repository, this hits the Rust impl

@vercel
Copy link

vercel bot commented Jul 19, 2023

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

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

@chris-olszewski chris-olszewski marked this pull request as ready for review July 19, 2023 23:39
@chris-olszewski chris-olszewski requested a review from a team as a code owner July 19, 2023 23:39
@github-actions
Copy link
Contributor

github-actions bot commented Jul 20, 2023

🟢 CI successful 🟢

Thanks

Copy link
Contributor

@gsoltis gsoltis left a comment

Choose a reason for hiding this comment

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

Thanks for tackling this.

@gsoltis gsoltis merged commit e5f43a5 into main Jul 20, 2023
52 checks passed
@gsoltis gsoltis deleted the olszewski/fix_pnpm_alias_workspace_deps branch July 20, 2023 01:03
NicholasLYang pushed a commit that referenced this pull request Jul 21, 2023
commit 6c178d2
Author: Alex Kirszenberg <alex.kirszenberg@vercel.com>
Date:   Thu Jul 20 18:06:03 2023 +0200

    Extract shared HMR utils to their own modules/crates (#5576)

    ### Description

    These will also be used in Next.js by the Nexturbo dev API.

    ### Testing Instructions

    N/A

commit e5f43a5
Author: Chris Olszewski <chris.olszewski@vercel.com>
Date:   Wed Jul 19 18:03:12 2023 -0700

    fix: pnpm alias workspace deps (#5569)

    ### Description

    Fixes #5441

    Adds support for [referencing workspaces through
    aliases](https://pnpm.io/workspaces#referencing-workspace-packages-through-aliases)
    by properly resolving them to the correct workspace. Before we would
    mark a package as being an external dependency (or if the alias was a
    valid workspace depend on the incorrect one).

    This PR now recognizes when `workspace:` dependency references a
    different package than the name that's used in the `package.json`.

    Note for reviewers:
    This probably isn't the cleanest solution in either Rust or Go, but
    while we need to maintain two codepaths this keeps the code roughly
    equivalent.

    ### Testing Instructions

    Added unit tests on the Go side.

    Tested manually with a repository where `web` specified it's dependency
    on `@scope/ui` as `"ui": "workspace:@scope/ui@*" and verified that:
    - `turbo run build`: `@scope/ui` finished building before building
    `web`, this hits the Go impl
    - `turbo prune --scope=web`: `@scope/ui` was included in the pruned
    repository, this hits the Rust impl

    ---------

    Co-authored-by: Chris Olszewski <Chris Olszewski>

commit 396bf45
Author: Chris Olszewski <chris.olszewski@vercel.com>
Date:   Wed Jul 19 13:31:35 2023 -0700

    feat: port prune to rust (#5531)

    ### Description

    Port prune from Go to Rust and remove the old Go implementation. To
    achieve this the following was done:
     - Parsing the lockfile during package graph construction
     - Porting utility functions
    - Some minor changes in `turborepo_paths`, these were primarily moving
    methods from their owned to borrowed counterparts
    - Expanding `package.json` parsing to grab some of the information
    pruning requires
    - Porting of the prune command itself. I added some additional structure
    compared to the Go version, but not enough that comparing it to the Go
    version should be difficult

    Notes for reviewers:
    I apologize that this PR ended up touching as much as it did. Reviewing
    the PR by commit should at least make all of the changes and their
    impacts obvious. Commits before `2d4154c` are already on main and can be
    skipped.

    ### Testing Instructions

    Existing unit tests and integration tests for file copying and package
    graph traversal. Actual lockfile behavior is mostly covered by unit
    tests that were ported when the lockfile were ported.

    Also did various manual testing with pruning monorepos.

    ---------

    Co-authored-by: Chris Olszewski <Chris Olszewski>

commit 007b574
Author: Alex Kirszenberg <alex.kirszenberg@vercel.com>
Date:   Wed Jul 19 22:17:39 2023 +0200

    Remove unnecessary ValueDebugFormat item, hide Vc field (#5567)

    ### Description

    This removes unnecessary items from the IDE's autosuggestion.

    I'd also like to get rid of all the `*_inline` suggestions, but RA will
    ignore `#[doc(hidden)]` when inside the same crate. I don't think
    there's a way to indicate "never, ever suggest this item". We could move
    some of these to be private to some generated module, but that module
    would probably still show up as a top level suggestion.

    ### Testing Instructions

    Automated tests.

commit d13b812
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Wed Jul 19 11:32:07 2023 -0700

    release(turborepo): 1.10.9 (#5565)

    Co-authored-by: Turbobot <turbobot@vercel.com>
    Co-authored-by: Chris Olszewski <Chris Olszewski>

commit 229a2a4
Author: Tobias Koppers <tobias.koppers@googlemail.com>
Date:   Wed Jul 19 16:08:16 2023 +0200

    make with_layer return Vc<Self> (#5563)

    ### Description

    Using the new ability to return `Vc<Self>`

    Co-authored-by: Alex Kirszenberg <alexkirsz@users.noreply.github.com>

commit c78593b
Author: Greg Soltis <greg.soltis@vercel.com>
Date:   Tue Jul 18 20:11:16 2023 -0700

    feat(turborepo): Add proxy support to create-turbo and turbo-gen (#5554)

    Co-authored-by: Greg Soltis <Greg Soltis>

commit 5ab8ac0
Author: Chris Olszewski <chris.olszewski@vercel.com>
Date:   Tue Jul 18 15:06:38 2023 -0700

    fix(lockfile): Fix directory resolution variant (#5551)

    ### Description

    Fixes #5529

    During the Rust migration I must've messed up the directory field name.
    Double checked against
    [`@pnpm/lockfile-types`](https://github.com/pnpm/pnpm/blob/main/lockfile/lockfile-types/src/index.ts#L86)
    to make sure all of the fields are correct now.

    `PackageResolution` should be an enum, but the fact that tarballs are an
    untagged variant makes that tricky to communicate to `serde`. A struct
    does enough for us.

    ### Testing Instructions

    Added new unit test to make sure we don't lose any fields for the
    various variants of the `resolution` field

    ---------

    Co-authored-by: Chris Olszewski <Chris Olszewski>

commit ca7e3e4
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Tue Jul 18 14:51:34 2023 -0700

    release(turborepo): 1.10.9-canary.0 (#5559)

    Co-authored-by: Turbobot <turbobot@vercel.com>

commit fc5e2b0
Author: Chris Olszewski <chris.olszewski@vercel.com>
Date:   Tue Jul 18 13:16:16 2023 -0700

    chore: no longer convert in relative unix path constructor (#5552)

    ### Description

    To quote @gsoltis:
    > In general:
    > - constructors should validate, to the extent they can (not much for
    `unix` paths, but can verify relative)
    > - conversions should be explicit. You need to know where you're
    starting from. If this were an AnchoredSystemPath on windows, the `\` ->
    `/` makes sense. If it's a literal from e.g. a tar file, then it
    doesn't.

    Reviewers Notes:
    - Opening up this PR in VSCode and using `Find All References` on the
    constructor is useful for double checking that I didn't miss a
    conversion.
    - Clippy error appeared on local when I made these changes. Fixed it
    just in case that would block CI
    - Moved `to_unix` to `AnchoredSystemPath` instead of
    `AnchoredSystemPathBuf` now that we have deref coercion which will
    automatically convert `&AnchroedSystemPathBuf` to `&AnchoredSystemPath`
    and moving the method allows it to be called from either type.

    ### Testing Instructions

    Looked through all uses of `RelativeUnixPathBuf::new` to see if there
    were places that depended on the conversion. The only use that was
    obvious was the usage in `cache_archive/create.rs`. `dotEnv` was the
    only other place where we possibly were converting a system path to a
    relative unix. We don't specify that `dotEnv` entries should be unix
    relative, so we might've been accidentally supporting system paths, but

    ---------

    Co-authored-by: Chris Olszewski <Chris Olszewski>

commit 3eb3a5f
Author: Tobias Koppers <tobias.koppers@googlemail.com>
Date:   Tue Jul 18 21:21:51 2023 +0200

    Ensure output assets reference only output assets (#5557)

    ### Description

    Ensure output assets reference only output assets

    next.js PR: vercel/next.js#52832

commit 22f0bf4
Author: Nathan Hammond <nathan.hammond@vercel.com>
Date:   Wed Jul 19 02:59:12 2023 +0800

    Remove binary optimization step. (#5543)

    Co-authored-by: Nathan Hammond <Nathan Hammond>

commit 5955625
Author: mknichel <7355009+mknichel@users.noreply.github.com>
Date:   Tue Jul 18 10:09:28 2023 -0700

    fix(turborepo): Allow users to select a Vercel team when linking a repository to a Space (#5533)

commit 814f0a2
Author: Leah <github.leah@hrmny.sh>
Date:   Tue Jul 18 17:31:33 2023 +0200

    feat(turbopack-ecmascript): implement acyclic SCC graph for ESM imports (#5506)

commit 46bb9b7
Author: Tobias Koppers <tobias.koppers@googlemail.com>
Date:   Tue Jul 18 13:41:01 2023 +0200

    move references() to specific traits (#5555)

    ### Description

    preparation for making different typed references

    next.js PR: vercel/next.js#52822

commit 56edd9e
Author: Greg Soltis <greg.soltis@vercel.com>
Date:   Mon Jul 17 21:37:26 2023 -0700

    feat(turborepo): Add task ids to failure reports (#5535)

    Co-authored-by: Greg Soltis <Greg Soltis>

commit ea934d1
Author: Greg Soltis <greg.soltis@vercel.com>
Date:   Mon Jul 17 13:52:59 2023 -0700

    chore(turborepo): Turborepo owns the examples-tests directory (#5540)

    Co-authored-by: Greg Soltis <Greg Soltis>

commit 5279282
Author: Alex Kirszenberg <alex.kirszenberg@vercel.com>
Date:   Mon Jul 17 19:55:22 2023 +0200

    Add missing feature to syn (#5547)

    ### Description

    Cargo check currently fails with:

    ```
    error[E0277]: `syn::Type` doesn't implement `Debug`
     --> crates/turbo-tasks-macros-shared/src/primitive_input.rs:8:5
      |
    6 | #[derive(Debug)]
      |          ----- in this derive macro expansion
    7 | pub struct PrimitiveInput {
    8 |     pub ty: Type,
      |     ^^^^^^^^^^^^ `syn::Type` cannot be formatted using `{:?}` because it doesn't implement `Debug`
      |
      = help: the trait `Debug` is not implemented for `syn::Type`
      = note: this error originates in the derive macro `Debug` (in Nightly builds, run with -Z macro-backtrace for more info)

    For more information about this error, try `rustc --explain E0277`.
    error: could not compile `turbo-tasks-macros-shared` (lib) due to previous error
    ```

    This is because because turbo-tasks-macros-shared (which is missing a
    syn feature to enable the debug trait) is part of the workspace default
    members, while turbo-tasks-macros (which has the feature) isn’t.

    ### Testing Instructions

    `cargo check`

commit 78f6cc8
Author: Chris Olszewski <chris.olszewski@vercel.com>
Date:   Mon Jul 17 10:40:13 2023 -0700

    docs: document log order (#5463)

    ### Description

    Adds documentation for `--log-order` #3916 including a callout of our
    special behavior on Github Actions.

    ### Testing Instructions

    Eyes

    ---------

    Co-authored-by: Chris Olszewski <Chris Olszewski>

commit 0771b80
Author: Amit Gurbani <amit1994.gurbani@gmail.com>
Date:   Mon Jul 17 23:09:44 2023 +0530

    Update storybook.mdx (#5537)

    ### Description

    Storybook now can be built with node 18, hence removing this from
    documentation.

    Co-authored-by: Anthony Shew <anthony.shew@vercel.com>

commit 91ca2ae
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Mon Jul 17 10:11:06 2023 -0700

    release(turborepo): 1.10.8 (#5546)

    Co-authored-by: Turbobot <turbobot@vercel.com>

commit d24075f
Author: Greg Soltis <greg.soltis@vercel.com>
Date:   Mon Jul 17 08:12:38 2023 -0700

    fix(turborepo): Set corepack dir for examples (#5539)

    ### Description

    - set a corepack install directory per example to avoid concurrency
    issues
     - set the `PATH` for the test to include the corepack directory

    ### Testing Instructions

    Examples tests

    ---------

    Co-authored-by: Greg Soltis <Greg Soltis>

commit 46d0945
Author: Nicholas Yang <nicholas.yang@vercel.com>
Date:   Mon Jul 17 11:07:45 2023 -0400

    feat(turborepo): FS Cache (#5473)

    ### Description

    Implements the FS cache on top of CacheItem. ~~This is stacked on top of
    #5065~~

    ### Testing Instructions

    Uses the same round-trip tests of HTTP cache.

    ---------

    Co-authored-by: --global <Nicholas Yang>
    Co-authored-by: Chris Olszewski <chris.olszewski@vercel.com>

commit 135c08f
Author: Tobias Koppers <tobias.koppers@googlemail.com>
Date:   Mon Jul 17 16:44:56 2023 +0200

    add direct cycle detection (#5544)

    ### Description

    very simple detection of dumb mistakes

commit 02f55d9
Author: Tobias Koppers <tobias.koppers@googlemail.com>
Date:   Mon Jul 17 16:33:34 2023 +0200

    move Asset::ident to more specific traits (#5528)

    ### Description

    * `ident()` is no longer on Asset, but on `Module`, `Source`,
    `OutputAsset` or `Chunk`
    * On the way, more AssetVc types needed to be switched to more specific
    traits

    next.js PR: vercel/next.js#52683

commit b069545
Author: Alex Kirszenberg <alex.kirszenberg@vercel.com>
Date:   Mon Jul 17 13:41:18 2023 +0200

    AdjacencyMap::reverse_topological (+ fixes) (#5527)

    ### Description

    This adds `AdjacencyMap::reverse_topological`, which is similar to
    `AdjacencyMap::into_reverse_topological` but doesn't consume the graph.

    This also:
    * Makes `AdjacencyMap` storable in `turbo_tasks::value`s;
    * Fixes ValueDebugFormat and TraceRawVcs derive macros so they support
    generic argument and bounds properly.

    ### Testing Instructions

    N/A

commit 8433a32
Author: Alex Kirszenberg <alex.kirszenberg@vercel.com>
Date:   Sun Jul 16 14:07:49 2023 +0200

    Vc<T> and Turbo Engine type system improvements (#4587)

    This PR changes our Turbo Engine code generation from generating
    additional `TypeVc` types to allowing the `Vc<Type>` notation. It also
    brings other improvements to the Turbo Engine type system, like more
    type-safe downcasting and upcasting, better support for primitives, the
    possibility to accept `&self` in `#[value_impl]` implementations
    everywhere, and a bunch of other changes.

    link WEB-379

commit fdc358a
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Fri Jul 14 20:31:07 2023 -0700

    release(turborepo): 1.10.8-canary.2 (#5534)

    Co-authored-by: Turbobot <turbobot@vercel.com>

commit 26fee25
Author: Greg Soltis <greg.soltis@vercel.com>
Date:   Fri Jul 14 11:13:59 2023 -0700

    fix(turborepo): Export and match on our copy of BasicUI (#5532)

    Co-authored-by: Greg Soltis <Greg Soltis>

commit b0ea0a8
Author: Greg Soltis <greg.soltis@vercel.com>
Date:   Fri Jul 14 10:39:52 2023 -0700

    fix(turborepo): Rebuild turbo if Go code has changed (#5530)

    Co-authored-by: Greg Soltis <Greg Soltis>

commit b6bb8fe
Author: Chris Olszewski <chris.olszewski@vercel.com>
Date:   Fri Jul 14 06:47:13 2023 -0700

    chore: use fs-err in turborepo fs related libs (#5517)

    ### Description
    Swaps our usage of various `fs` methods to use `fs-err` instead. To
    quote the `fs-err` docs:

    > Using [std::fs](https://doc.rust-lang.org/stable/std/fs/), if this
    code fails:
    >
    > `let file = File::open("does not exist.txt")?;`
    >
    > The error message that Rust gives you isn't very useful:
    >
    > `The system cannot find the file specified. (os error 2)`
    >
    > ...but if we use `fs-err` instead, our error contains more actionable
    information:
    >
    > ```failed to open file `does not exist.txt`
    > caused by: The system cannot find the file specified. (os error 2)```

    ### Testing Instructions
    Existing unit tests pass

    Co-authored-by: Chris Olszewski <Chris Olszewski>

commit f3a36e7
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Thu Jul 13 15:27:21 2023 -0700

    release(turborepo): 1.10.8-canary.1 (#5523)

    Co-authored-by: Turbobot <turbobot@vercel.com>

commit cabca3c
Author: Nicholas Yang <nicholas.yang@vercel.com>
Date:   Thu Jul 13 16:12:46 2023 -0400

    chore: Extend examples timeout (#5504)

    ### Description

    We get a lot of timeout failures on examples tests. Since this almost
    always requires re-running the test, which adds another 30 minutes of
    compute time, it's probably better to extend the timeout to 40 minutes.

    ### Testing Instructions

    <!--
      Give a quick description of steps to test your changes.
    -->

    Co-authored-by: nicholaslyang <Nicholas Yang>

commit 7c18c80
Author: Greg Soltis <greg.soltis@vercel.com>
Date:   Thu Jul 13 12:58:14 2023 -0700

    Implement hashing fallback (#5505)

    Co-authored-by: Greg Soltis <Greg Soltis>

commit 67e71c7
Author: Anthony Shew <anthony.shew@vercel.com>
Date:   Thu Jul 13 11:35:08 2023 -0700

    Better spot for link. (#5520)

commit a14180e
Author: Anthony Shew <anthony.shew@vercel.com>
Date:   Thu Jul 13 11:24:26 2023 -0700

    Fix link. (#5518)

commit b7aaa7b
Author: Nicholas Yang <nicholas.yang@vercel.com>
Date:   Thu Jul 13 13:18:44 2023 -0400

    chore: Added clippy deny all to crates (#5514)

    Co-authored-by: nicholaslyang <Nicholas Yang>

commit e3c68fa
Author: Alex Kirszenberg <alex.kirszenberg@vercel.com>
Date:   Thu Jul 13 16:34:27 2023 +0200

    Add any_content_changed_of_output_assets (#5513)

    ### Description

    Required for vercel/next.js#52259

    ### Testing Instructions

    N/A

    Co-authored-by: Tobias Koppers <sokra@users.noreply.github.com>

commit 4022f2b
Author: Tobias Koppers <tobias.koppers@googlemail.com>
Date:   Thu Jul 13 14:54:55 2023 +0200

    OutputAsset trait (#5507)

    ### Description

    adding a trait to all assets in the output graph

    next.js PR: vercel/next.js#52606
kodiakhq bot pushed a commit to timelessco/js-bottomsheet that referenced this pull request Jul 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 |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`^1.10.9` -> `^1.10.10`](https://renovatebot.com/diffs/npm/turbo/1.10.9/1.10.10) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.9/1.10.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.9/1.10.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

### [`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 - "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 Jul 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 |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`^1.10.9` ->
`^1.10.11`](https://renovatebot.com/diffs/npm/turbo/1.10.9/1.10.11) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.9/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.9/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.10 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[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)

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

#### What's Changed

##### Changelog

- chore: no longer convert in relative unix path constructor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[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**: 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:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMS4wIiwidXBkYXRlZEluVmVyIjoiMzYuMTEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

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

---

### Release Notes

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.10 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[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)

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

#### What's Changed

##### Changelog

- chore: no longer convert in relative unix path constructor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[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.

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMS4wIiwidXBkYXRlZEluVmVyIjoiMzYuMTEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

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

---

### Release Notes

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.10 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[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)

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

#### What's Changed

##### Changelog

- chore: no longer convert in relative unix path constructor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[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.

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMS4wIiwidXBkYXRlZEluVmVyIjoiMzYuMTEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

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 Jul 25, 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.11`](https://renovatebot.com/diffs/npm/turbo/1.10.9/1.10.11) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.9/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.9/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.10 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[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)

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

##### What's Changed

##### Changelog

- chore: no longer convert in relative unix path constructor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[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**: 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:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMS4wIiwidXBkYXRlZEluVmVyIjoiMzYuMTEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@storybook/addon-a11y](https://togithub.com/storybookjs/storybook/tree/next/code/addons/a11y) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-a11y/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-a11y/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-a11y/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-a11y/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-a11y/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-essentials](https://togithub.com/storybookjs/storybook/tree/next/code/addons/essentials) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-essentials/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-essentials/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-essentials/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-essentials/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-essentials/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-interactions](https://togithub.com/storybookjs/storybook/tree/next/code/addons/interactions) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-interactions/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-interactions/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-interactions/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-interactions/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-interactions/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-links](https://togithub.com/storybookjs/storybook/tree/next/code/addons/links) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-links/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-links/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-links/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-links/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-links/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-viewport](https://togithub.com/storybookjs/storybook/tree/next/code/addons/viewport) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-viewport/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-viewport/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-viewport/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-viewport/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-viewport/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/blocks](https://togithub.com/storybookjs/storybook/tree/next/code/ui/blocks) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2fblocks/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2fblocks/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2fblocks/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2fblocks/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2fblocks/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/nextjs](https://togithub.com/storybookjs/storybook/tree/next/code/frameworks/nextjs) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2fnextjs/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2fnextjs/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2fnextjs/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2fnextjs/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2fnextjs/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/react](https://togithub.com/storybookjs/storybook/tree/next/code/renderers/react) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2freact/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2freact/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2freact/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2freact/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2freact/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@tabler/icons-react](https://tabler-icons.io) ([source](https://togithub.com/tabler/tabler-icons)) | [`2.28.0` -> `2.29.0`](https://renovatebot.com/diffs/npm/@tabler%2ficons-react/2.28.0/2.29.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tabler%2ficons-react/2.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@tabler%2ficons-react/2.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@tabler%2ficons-react/2.28.0/2.29.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tabler%2ficons-react/2.28.0/2.29.0?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.0` -> `18.17.1`](https://renovatebot.com/diffs/npm/@types%2fnode/18.17.0/18.17.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/18.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/18.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/18.17.0/18.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/18.17.0/18.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.2.15` -> `18.2.16`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.15/18.2.16) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.15/18.2.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.15/18.2.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint) | [`6.1.0` -> `6.2.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/6.1.0/6.2.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/6.1.0/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/6.1.0/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint) | [`6.1.0` -> `6.2.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/6.1.0/6.2.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/6.1.0/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/6.1.0/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-plugin-turbo](https://togithub.com/vercel/turbo) | [`1.10.9` -> `1.10.11`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/1.10.9/1.10.11) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-turbo/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-plugin-turbo/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-plugin-turbo/1.10.9/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-plugin-turbo/1.10.9/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [storybook](https://togithub.com/storybookjs/storybook/tree/next/code/lib/cli) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/storybook/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/storybook/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/storybook/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/storybook/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/storybook/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.9` -> `1.10.11`](https://renovatebot.com/diffs/npm/turbo/1.10.9/1.10.11) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.9/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.9/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

### [`v7.1.1`](https://togithub.com/storybookjs/storybook/blob/HEAD/CHANGELOG.md#711)

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

-   Angular: Make enableProdMode optional - [#&#8203;23489](https://togithub.com/storybookjs/storybook/pull/23489), thanks [@&#8203;valentinpalkovic](https://togithub.com/valentinpalkovic)!
-   CLI: Gracefully shutdown and cleanup execa child processes - [#&#8203;23538](https://togithub.com/storybookjs/storybook/pull/23538), thanks [@&#8203;valentinpalkovic](https://togithub.com/valentinpalkovic)!
-   CLI: Improve support of mono repositories - [#&#8203;23458](https://togithub.com/storybookjs/storybook/pull/23458), thanks [@&#8203;valentinpalkovic](https://togithub.com/valentinpalkovic)!

</details>

<details>
<summary>tabler/tabler-icons (@&#8203;tabler/icons-react)</summary>

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

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

<img src="https://github.com/tabler/tabler-icons/assets/1282324/4b896148-b2ce-437c-a459-6c4ef081049a" width="584" alt="" />

##### 18 new icons:

-   `brand-x`
-   `brand-xdeep`
-   `device-projector`
-   `droplets`
-   `ghost-3`
-   `ladle`
-   `reorder`
-   `shopping-bag-check`
-   `shopping-bag-discount`
-   `shopping-bag-edit`
-   `shopping-bag-exclamation`
-   `shopping-bag-minus`
-   `shopping-bag-plus`
-   `shopping-bag-search`
-   `shopping-bag-x`
-   `transfer-vertical`
-   `transfer`
-   `xxx`

Fixed icons: `basket-bolt`, `basket-cancel`, `basket-check`, `basket-code`, `basket-cog`, `basket-discount`, `basket-dollar`, `basket-down`, `basket-exclamation`, `basket-heart`, `basket-minus`, `basket-off`, `basket-pause`, `basket-pin`, `basket-plus`, `basket-question`, `basket-search`, `basket-share`, `basket-star`, `basket-up`, `basket-x`, `basket`, `gif`

</details>

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

### [`v6.2.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#620-2023-07-24)

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

##### Bug Fixes

-   **eslint-plugin:** \[member-ordering] account for repeated names ([#&#8203;6864](https://togithub.com/typescript-eslint/typescript-eslint/issues/6864)) ([d207b59](https://togithub.com/typescript-eslint/typescript-eslint/commit/d207b59e24acb9377a7a55104d082bd91fbb664e))
-   **eslint-plugin:** \[no-unsafe-enum-comparison] exempt bit shift operators ([#&#8203;7074](https://togithub.com/typescript-eslint/typescript-eslint/issues/7074)) ([b3e0e75](https://togithub.com/typescript-eslint/typescript-eslint/commit/b3e0e7571f1abb5dae347d3701844324232b1431))
-   **eslint-plugin:** \[prefer-nullish-coalescing] handle case when type of left side is null or undefined ([#&#8203;7225](https://togithub.com/typescript-eslint/typescript-eslint/issues/7225)) ([b62affe](https://togithub.com/typescript-eslint/typescript-eslint/commit/b62affe8ddac7c0af22bf74f22503d0cda92f4c0))
-   **eslint-plugin:** use a default export for the rules type ([#&#8203;7266](https://togithub.com/typescript-eslint/typescript-eslint/issues/7266)) ([af77a1d](https://togithub.com/typescript-eslint/typescript-eslint/commit/af77a1d33f0853d2ab0f61e4ac04dec47cd7ba18))

##### Features

-   **eslint-plugin:** \[class-methods-use-this] add extension rule ([#&#8203;6457](https://togithub.com/typescript-eslint/typescript-eslint/issues/6457)) ([18ea3b1](https://togithub.com/typescript-eslint/typescript-eslint/commit/18ea3b1f8938e25053f89b7e4ec8dcc6c453118a))
-   **eslint-plugin:** sync getFunctionHeadLoc implementation with upstream ([#&#8203;7260](https://togithub.com/typescript-eslint/typescript-eslint/issues/7260)) ([f813147](https://togithub.com/typescript-eslint/typescript-eslint/commit/f81314731cccb779423e2580a805eff3efff8564))

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

</details>

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

### [`v6.2.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#620-2023-07-24)

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

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

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

</details>

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

### [`v1.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 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: #119
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
davydkov pushed a commit to likec4/likec4 that referenced this pull request Jul 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.9` ->
`^1.10.11`](https://renovatebot.com/diffs/npm/turbo/1.10.9/1.10.11) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.9/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.9/1.10.11?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.10 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[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)

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

#### What's Changed

##### Changelog

- chore: no longer convert in relative unix path constructor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[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.

---

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

---

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

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

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

---

### Release Notes

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.11 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[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)

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.10 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[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)

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

#### What's Changed

##### Changelog

- chore: no longer convert in relative unix path constructor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[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.

---

- [ ] <!-- 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/Hiratake/hiratake-web).

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

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 Jul 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 |
|---|---|---|---|---|---|
| [@aws-lambda-powertools/logger](https://togithub.com/aws-powertools/powertools-lambda-typescript/tree/main/packages/logger#readme) ([source](https://togithub.com/aws-powertools/powertools-lambda-typescript)) | [`1.11.1` -> `1.12.1`](https://renovatebot.com/diffs/npm/@aws-lambda-powertools%2flogger/1.11.1/1.12.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-lambda-powertools%2flogger/1.12.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-lambda-powertools%2flogger/1.12.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-lambda-powertools%2flogger/1.11.1/1.12.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-lambda-powertools%2flogger/1.11.1/1.12.1?slim=true)](https://docs.renovatebot.com/merge-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.370.0` -> `3.377.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-cognito-identity-provider/3.370.0/3.377.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-cognito-identity-provider/3.377.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.377.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.370.0/3.377.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.370.0/3.377.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/client-s3](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | [`3.374.0` -> `3.377.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.374.0/3.377.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@aws-sdk%2fclient-s3/3.377.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@aws-sdk%2fclient-s3/3.377.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@aws-sdk%2fclient-s3/3.374.0/3.377.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@aws-sdk%2fclient-s3/3.374.0/3.377.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@playwright/test](https://playwright.dev) ([source](https://togithub.com/Microsoft/playwright)) | [`1.36.1` -> `1.36.2`](https://renovatebot.com/diffs/npm/@playwright%2ftest/1.36.1/1.36.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@playwright%2ftest/1.36.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@playwright%2ftest/1.36.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@playwright%2ftest/1.36.1/1.36.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@playwright%2ftest/1.36.1/1.36.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-a11y](https://togithub.com/storybookjs/storybook/tree/next/code/addons/a11y) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-a11y/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-a11y/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-a11y/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-a11y/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-a11y/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-actions](https://togithub.com/storybookjs/storybook/tree/next/code/addons/actions) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-actions/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-actions/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-actions/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-actions/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-actions/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-docs](https://togithub.com/storybookjs/storybook/tree/next/code/addons/docs) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-docs/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-docs/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-docs/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-docs/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-docs/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-essentials](https://togithub.com/storybookjs/storybook/tree/next/code/addons/essentials) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-essentials/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-essentials/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-essentials/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-essentials/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-essentials/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-interactions](https://togithub.com/storybookjs/storybook/tree/next/code/addons/interactions) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-interactions/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-interactions/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-interactions/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-interactions/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-interactions/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-links](https://togithub.com/storybookjs/storybook/tree/next/code/addons/links) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-links/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-links/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-links/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-links/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-links/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-viewport](https://togithub.com/storybookjs/storybook/tree/next/code/addons/viewport) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2faddon-viewport/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-viewport/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-viewport/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-viewport/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-viewport/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/components](https://togithub.com/storybookjs/storybook/tree/next/code/ui/components) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2fcomponents/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2fcomponents/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2fcomponents/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2fcomponents/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2fcomponents/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/core-events](https://togithub.com/storybookjs/storybook/tree/next/code/lib/core-events) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2fcore-events/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2fcore-events/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2fcore-events/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2fcore-events/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2fcore-events/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/manager-api](https://togithub.com/storybookjs/storybook/tree/next/code/lib/manager-api) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2fmanager-api/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2fmanager-api/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2fmanager-api/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2fmanager-api/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2fmanager-api/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/nextjs](https://togithub.com/storybookjs/storybook/tree/next/code/frameworks/nextjs) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2fnextjs/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2fnextjs/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2fnextjs/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2fnextjs/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2fnextjs/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/preview-api](https://togithub.com/storybookjs/storybook/tree/next/code/lib/preview-api) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2fpreview-api/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2fpreview-api/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2fpreview-api/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2fpreview-api/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2fpreview-api/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/react](https://togithub.com/storybookjs/storybook/tree/next/code/renderers/react) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2freact/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2freact/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2freact/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2freact/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2freact/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/theming](https://togithub.com/storybookjs/storybook/tree/next/code/lib/theming) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2ftheming/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2ftheming/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2ftheming/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2ftheming/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2ftheming/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/types](https://togithub.com/storybookjs/storybook/tree/next/code/lib/types) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/@storybook%2ftypes/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2ftypes/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2ftypes/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2ftypes/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2ftypes/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/eslint](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`8.44.0` -> `8.44.1`](https://renovatebot.com/diffs/npm/@types%2feslint/8.44.0/8.44.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2feslint/8.44.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2feslint/8.44.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2feslint/8.44.0/8.44.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2feslint/8.44.0/8.44.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.0` -> `18.17.1`](https://renovatebot.com/diffs/npm/@types%2fnode/18.17.0/18.17.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/18.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/18.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/18.17.0/18.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/18.17.0/18.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.2.15` -> `18.2.16`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.15/18.2.16) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.15/18.2.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.15/18.2.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint) | [`6.1.0` -> `6.2.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/6.1.0/6.2.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/6.1.0/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/6.1.0/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint) | [`6.1.0` -> `6.2.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/6.1.0/6.2.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/6.1.0/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/6.1.0/6.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [esbuild](https://togithub.com/evanw/esbuild) | [`0.18.16` -> `0.18.17`](https://renovatebot.com/diffs/npm/esbuild/0.18.16/0.18.17) | [![age](https://developer.mend.io/api/mc/badges/age/npm/esbuild/0.18.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/esbuild/0.18.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/esbuild/0.18.16/0.18.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/esbuild/0.18.16/0.18.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-plugin-turbo](https://togithub.com/vercel/turbo) | [`1.10.9` -> `1.10.12`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/1.10.9/1.10.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-turbo/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-plugin-turbo/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-plugin-turbo/1.10.9/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-plugin-turbo/1.10.9/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [i18next](https://www.i18next.com) ([source](https://togithub.com/i18next/i18next)) | [`23.2.11` -> `23.3.0`](https://renovatebot.com/diffs/npm/i18next/23.2.11/23.3.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/i18next/23.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/i18next/23.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/i18next/23.2.11/23.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/i18next/23.2.11/23.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [libphonenumber-js](https://gitlab.com/catamphetamine/libphonenumber-js) | [`1.10.37` -> `1.10.38`](https://renovatebot.com/diffs/npm/libphonenumber-js/1.10.37/1.10.38) | [![age](https://developer.mend.io/api/mc/badges/age/npm/libphonenumber-js/1.10.38?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/libphonenumber-js/1.10.38?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/libphonenumber-js/1.10.37/1.10.38?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/libphonenumber-js/1.10.37/1.10.38?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [quicktype-core](https://togithub.com/quicktype/quicktype) | [`23.0.59` -> `23.0.63`](https://renovatebot.com/diffs/npm/quicktype-core/23.0.59/23.0.63) | [![age](https://developer.mend.io/api/mc/badges/age/npm/quicktype-core/23.0.63?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/quicktype-core/23.0.63?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/quicktype-core/23.0.59/23.0.63?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/quicktype-core/23.0.59/23.0.63?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [storybook](https://togithub.com/storybookjs/storybook/tree/next/code/lib/cli) ([source](https://togithub.com/storybookjs/storybook)) | [`7.1.0` -> `7.1.1`](https://renovatebot.com/diffs/npm/storybook/7.1.0/7.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/storybook/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/storybook/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/storybook/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/storybook/7.1.0/7.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.9` -> `1.10.12`](https://renovatebot.com/diffs/npm/turbo/1.10.9/1.10.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.9/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.9/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>aws-powertools/powertools-lambda-typescript (@&#8203;aws-lambda-powertools/logger)</summary>

### [`v1.12.1`](https://togithub.com/aws-powertools/powertools-lambda-typescript/blob/HEAD/CHANGELOG.md#1121-2023-07-25)

[Compare Source](https://togithub.com/aws-powertools/powertools-lambda-typescript/compare/v1.12.0...v1.12.1)

**Note:** Version bump only for package aws-lambda-powertools-typescript

### [`v1.12.0`](https://togithub.com/aws-powertools/powertools-lambda-typescript/blob/HEAD/CHANGELOG.md#1120-2023-07-25)

[Compare Source](https://togithub.com/aws-powertools/powertools-lambda-typescript/compare/v1.11.1...v1.12.0)

##### Features

-   **batch:** add batch processing utility ([#&#8203;1625](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1625)) ([c4e6b19](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/c4e6b192c3658cbcc3f458a579a0752153e3c201)), closes [#&#8203;1588](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1588) [#&#8203;1591](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1591) [#&#8203;1593](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1593) [#&#8203;1592](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1592) [#&#8203;1594](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1594)
-   **logger:** add cause to formatted error ([#&#8203;1617](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1617)) ([6a14595](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/6a145959249db6eeb89fdfe3ed4c6e30ab155f9c))

#### [1.11.1](https://togithub.com/aws-powertools/powertools-lambda-typescript/compare/v1.11.0...v1.11.1) (2023-07-11)

##### Bug Fixes

-   **docs:** fix alias in versions.json ([#&#8203;1576](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1576)) ([7198cbc](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/7198cbca28962e07486b90ecb4f265cafe28bf73))
-   **idempotency:** types, docs, and `makeIdempotent` function wrapper ([#&#8203;1579](https://togithub.com/aws-powertools/powertools-lambda-typescript/issues/1579)) ([bba1c01](https://togithub.com/aws-powertools/powertools-lambda-typescript/commit/bba1c01a0b3f08e962568e1d0eb44d486829657b))

</details>

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

### [`v3.377.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-cognito-identity-provider/CHANGELOG.md#33770-2023-07-25)

**Note:** Version bump only for package [@&#8203;aws-sdk/client-cognito-identity-provider](https://togithub.com/aws-sdk/client-cognito-identity-provider)

</details>

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

### [`v3.377.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#33770-2023-07-25)

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

**Note:** Version bump only for package [@&#8203;aws-sdk/client-s3](https://togithub.com/aws-sdk/client-s3)

</details>

<details>
<summary>Microsoft/playwright (@&#8203;playwright/test)</summary>

### [`v1.36.2`](https://togithub.com/microsoft/playwright/releases/tag/v1.36.2): 1.36.2

[Compare Source](https://togithub.com/Microsoft/playwright/compare/v1.36.1...v1.36.2)

##### Highlights

[microsoft/playwright#24316 - \[REGRESSION] Character classes are not working in globs in 1.36

##### Browser Versions

-   Chromium 115.0.5790.75
-   Mozilla Firefox 115.0
-   WebKit 17.0

This version was also tested against the following stable channels:

-   Google Chrome 114
-   Microsoft Edge 114

</details>

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

### [`v7.1.1`](https://togithub.com/storybookjs/storybook/blob/HEAD/CHANGELOG.md#711)

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

-   Angular: Make enableProdMode optional - [#&#8203;23489](https://togithub.com/storybookjs/storybook/pull/23489), thanks [@&#8203;valentinpalkovic](https://togithub.com/valentinpalkovic)!
-   CLI: Gracefully shutdown and cleanup execa child processes - [#&#8203;23538](https://togithub.com/storybookjs/storybook/pull/23538), thanks [@&#8203;valentinpalkovic](https://togithub.com/valentinpalkovic)!
-   CLI: Improve support of mono repositories - [#&#8203;23458](https://togithub.com/storybookjs/storybook/pull/23458), thanks [@&#8203;valentinpalkovic](https://togithub.com/valentinpalkovic)!

</details>

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

### [`v6.2.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#620-2023-07-24)

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

##### Bug Fixes

-   **eslint-plugin:** \[member-ordering] account for repeated names ([#&#8203;6864](https://togithub.com/typescript-eslint/typescript-eslint/issues/6864)) ([d207b59](https://togithub.com/typescript-eslint/typescript-eslint/commit/d207b59e24acb9377a7a55104d082bd91fbb664e))
-   **eslint-plugin:** \[no-unsafe-enum-comparison] exempt bit shift operators ([#&#8203;7074](https://togithub.com/typescript-eslint/typescript-eslint/issues/7074)) ([b3e0e75](https://togithub.com/typescript-eslint/typescript-eslint/commit/b3e0e7571f1abb5dae347d3701844324232b1431))
-   **eslint-plugin:** \[prefer-nullish-coalescing] handle case when type of left side is null or undefined ([#&#8203;7225](https://togithub.com/typescript-eslint/typescript-eslint/issues/7225)) ([b62affe](https://togithub.com/typescript-eslint/typescript-eslint/commit/b62affe8ddac7c0af22bf74f22503d0cda92f4c0))
-   **eslint-plugin:** use a default export for the rules type ([#&#8203;7266](https://togithub.com/typescript-eslint/typescript-eslint/issues/7266)) ([af77a1d](https://togithub.com/typescript-eslint/typescript-eslint/commit/af77a1d33f0853d2ab0f61e4ac04dec47cd7ba18))

##### Features

-   **eslint-plugin:** \[class-methods-use-this] add extension rule ([#&#8203;6457](https://togithub.com/typescript-eslint/typescript-eslint/issues/6457)) ([18ea3b1](https://togithub.com/typescript-eslint/typescript-eslint/commit/18ea3b1f8938e25053f89b7e4ec8dcc6c453118a))
-   **eslint-plugin:** sync getFunctionHeadLoc implementation with upstream ([#&#8203;7260](https://togithub.com/typescript-eslint/typescript-eslint/issues/7260)) ([f813147](https://togithub.com/typescript-eslint/typescript-eslint/commit/f81314731cccb779423e2580a805eff3efff8564))

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

</details>

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

### [`v6.2.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#620-2023-07-24)

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

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

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

</details>

<details>
<summary>evanw/esbuild (esbuild)</summary>

### [`v0.18.17`](https://togithub.com/evanw/esbuild/blob/HEAD/CHANGELOG.md#01817)

[Compare Source](https://togithub.com/evanw/esbuild/compare/v0.18.16...v0.18.17)

-   Support `An+B` syntax and `:nth-*()` pseudo-classes in CSS

    This adds support for the `:nth-child()`, `:nth-last-child()`, `:nth-of-type()`, and `:nth-last-of-type()` pseudo-classes to esbuild, which has the following consequences:

    -   The [`An+B` syntax](https://drafts.csswg.org/css-syntax-3/#anb-microsyntax) is now parsed, so parse errors are now reported
    -   `An+B` values inside these pseudo-classes are now pretty-printed (e.g. a leading `+` will be stripped because it's not in the AST)
    -   When minification is enabled, `An+B` values are reduced to equivalent but shorter forms (e.g. `2n+0` => `2n`, `2n+1` => `odd`)
    -   Local CSS names in an `of` clause are now detected (e.g. in `:nth-child(2n of :local(.foo))` the name `foo` is now renamed)

    ```css
    /* Original code */
    .foo:nth-child(+2n+1 of :local(.bar)) {
      color: red;
    }

    /* Old output (with --loader=local-css) */
    .stdin_foo:nth-child(+2n + 1 of :local(.bar)) {
      color: red;
    }

    /* New output (with --loader=local-css) */
    .stdin_foo:nth-child(2n+1 of .stdin_bar) {
      color: red;
    }
    ```

-   Adjust CSS nesting parser for IE7 hacks ([#&#8203;3272](https://togithub.com/evanw/esbuild/issues/3272))

    This fixes a regression with esbuild's treatment of IE7 hacks in CSS. CSS nesting allows selectors to be used where declarations are expected. There's an IE7 hack where prefixing a declaration with a `*` causes that declaration to only be applied in IE7 due to a bug in IE7's CSS parser. However, it's valid for nested CSS selectors to start with `*`. So esbuild was incorrectly parsing these declarations and anything following it up until the next `{` as a selector for a nested CSS rule. This release changes esbuild's parser to terminate the parsing of selectors for nested CSS rules when a `;` is encountered to fix this edge case:

    ```css
    /* Original code */
    .item {
      *width: 100%;
      height: 1px;
    }

    /* Old output */
    .item {
      *width: 100%; height: 1px; {
      }
    }

    /* New output */
    .item {
      *width: 100%;
      height: 1px;
    }
    ```

    Note that the syntax for CSS nesting is [about to change again](https://togithub.com/w3c/csswg-drafts/issues/7961), so esbuild's CSS parser may still not be completely accurate with how browsers do and/or will interpret CSS nesting syntax. Expect additional updates to esbuild's CSS parser in the future to deal with upcoming CSS specification changes.

-   Adjust esbuild's warning about undefined imports for TypeScript `import` equals declarations ([#&#8203;3271](https://togithub.com/evanw/esbuild/issues/3271))

    In JavaScript, accessing a missing property on an import namespace object is supposed to result in a value of `undefined` at run-time instead of an error at compile-time. This is something that esbuild warns you about by default because doing this can indicate a bug with your code. For example:

    ```js
    // app.js
    import * as styles from './styles'
    console.log(styles.buton)
    ```

    ```js
    // styles.js
    export let button = {}
    ```

    If you bundle `app.js` with esbuild you will get this:

        ▲ [WARNING] Import "buton" will always be undefined because there is no matching export in "styles.js" [import-is-undefined]

            app.js:2:19:
              2 │ console.log(styles.buton)
                │                    ~~~~~
                ╵                    button

          Did you mean to import "button" instead?

            styles.js:1:11:
              1 │ export let button = {}
                ╵            ~~~~~~

    However, there is TypeScript-only syntax for `import` equals declarations that can represent either a type import (which esbuild should ignore) or a value import (which esbuild should respect). Since esbuild doesn't have a type system, it tries to only respect `import` equals declarations that are actually used as values. Previously esbuild always generated this warning for unused imports referenced within `import` equals declarations even when the reference could be a type instead of a value. Starting with this release, esbuild will now only warn in this case if the import is actually used. Here is an example of some code that no longer causes an incorrect warning:

    ```ts
    // app.ts
    import * as styles from './styles'
    import ButtonType = styles.Button
    ```

    ```ts
    // styles.ts
    export interface Button {}
    ```

</details>

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

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

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

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

[Compare Source](https://togithub.com/i18next/i18next/compare/v23.2.11...v23.3.0)

-   types: Fix performance issue that affects flat object with multiple (thousands) keys [2004](https://togithub.com/i18next/i18next/pull/2004)

</details>

<details>
<summary>catamphetamine/libphonenumber-js (libphonenumber-js)</summary>

### [`v1.10.38`](https://gitlab.com/catamphetamine/libphonenumber-js/compare/v1.10.37...v1.10.38)

[Compare Source](https://gitlab.com/catamphetamine/libphonenumber-js/compare/v1.10.37...v1.10.38)

</details>

<details>
<summary>quicktype/quicktype (quicktype-core)</summary>

### [`v23.0.63`](https://togithub.com/quicktype/quicktype/compare/30759e7766cd2605c2fd68fd14c10812b83042ae...7fef427d2e9bd00dd0a48578d55c908ec32d62b9)

[Compare Source](https://togithub.com/quicktype/quicktype/compare/30759e7766cd2605c2fd68fd14c10812b83042ae...7fef427d2e9bd00dd0a48578d55c908ec32d62b9)

### [`v23.0.62`](https://togithub.com/quicktype/quicktype/compare/378f9237f1af09f6be29651e133b3a8738b49c7c...30759e7766cd2605c2fd68fd14c10812b83042ae)

[Compare Source](https://togithub.com/quicktype/quicktype/compare/378f9237f1af09f6be29651e133b3a8738b49c7c...30759e7766cd2605c2fd68fd14c10812b83042ae)

### [`v23.0.61`](https://togithub.com/quicktype/quicktype/compare/dfff7ce879deca58cec6813d3cc238c2060e4d7e...378f9237f1af09f6be29651e133b3a8738b49c7c)

[Compare Source](https://togithub.com/quicktype/quicktype/compare/dfff7ce879deca58cec6813d3cc238c2060e4d7e...378f9237f1af09f6be29651e133b3a8738b49c7c)

### [`v23.0.60`](https://togithub.com/quicktype/quicktype/compare/ca0de89246e2512361d04a3598f4006f3d7f4e8f...dfff7ce879deca58cec6813d3cc238c2060e4d7e)

[Compare Source](https://togithub.com/quicktype/quicktype/compare/ca0de89246e2512361d04a3598f4006f3d7f4e8f...dfff7ce879deca58cec6813d3cc238c2060e4d7e)

</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: #684
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/next-ts-app that referenced this pull request Jul 30, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@next/bundle-analyzer](https://togithub.com/vercel/next.js) | [`13.4.10` -> `13.4.12`](https://renovatebot.com/diffs/npm/@next%2fbundle-analyzer/13.4.10/13.4.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@next%2fbundle-analyzer/13.4.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@next%2fbundle-analyzer/13.4.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@next%2fbundle-analyzer/13.4.10/13.4.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@next%2fbundle-analyzer/13.4.10/13.4.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@next/env](https://togithub.com/vercel/next.js) | [`13.4.10` -> `13.4.12`](https://renovatebot.com/diffs/npm/@next%2fenv/13.4.10/13.4.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@next%2fenv/13.4.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@next%2fenv/13.4.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@next%2fenv/13.4.10/13.4.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@next%2fenv/13.4.10/13.4.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@next/eslint-plugin-next](https://togithub.com/vercel/next.js) | [`13.4.10` -> `13.4.12`](https://renovatebot.com/diffs/npm/@next%2feslint-plugin-next/13.4.10/13.4.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@next%2feslint-plugin-next/13.4.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@next%2feslint-plugin-next/13.4.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@next%2feslint-plugin-next/13.4.10/13.4.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@next%2feslint-plugin-next/13.4.10/13.4.12?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.16.19` -> `18.17.1`](https://renovatebot.com/diffs/npm/@types%2fnode/18.16.19/18.17.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/18.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/18.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/18.16.19/18.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/18.16.19/18.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.2.15` -> `18.2.17`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.15/18.2.17) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.15/18.2.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.15/18.2.17?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [dedent](https://togithub.com/dmnd/dedent) | [`1.2.0` -> `1.3.0`](https://renovatebot.com/diffs/npm/dedent/1.2.0/1.3.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/dedent/1.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/dedent/1.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/dedent/1.2.0/1.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/dedent/1.2.0/1.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-config-canonical](https://togithub.com/gajus/eslint-config-canonical) | [`41.1.3` -> `41.1.6`](https://renovatebot.com/diffs/npm/eslint-config-canonical/41.1.3/41.1.6) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-canonical/41.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-canonical/41.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-canonical/41.1.3/41.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-canonical/41.1.3/41.1.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-config-prettier](https://togithub.com/prettier/eslint-config-prettier) | [`8.8.0` -> `8.9.0`](https://renovatebot.com/diffs/npm/eslint-config-prettier/8.8.0/8.9.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-prettier/8.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-prettier/8.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-prettier/8.8.0/8.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-prettier/8.8.0/8.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [execa](https://togithub.com/sindresorhus/execa) | [`7.1.1` -> `7.2.0`](https://renovatebot.com/diffs/npm/execa/7.1.1/7.2.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/execa/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/execa/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/execa/7.1.1/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/execa/7.1.1/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [knip](https://togithub.com/webpro/knip) | [`2.16.0` -> `2.17.1`](https://renovatebot.com/diffs/npm/knip/2.16.0/2.17.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/knip/2.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/knip/2.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/knip/2.16.0/2.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/knip/2.16.0/2.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [postcss](https://postcss.org/) ([source](https://togithub.com/postcss/postcss)) | [`8.4.26` -> `8.4.27`](https://renovatebot.com/diffs/npm/postcss/8.4.26/8.4.27) | [![age](https://developer.mend.io/api/mc/badges/age/npm/postcss/8.4.27?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/postcss/8.4.27?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/postcss/8.4.26/8.4.27?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/postcss/8.4.26/8.4.27?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [sharp](https://togithub.com/lovell/sharp) ([changelog](https://togithub.com/lovell/sharp/blob/main/docs/changelog.md)) | [`0.32.3` -> `0.32.4`](https://renovatebot.com/diffs/npm/sharp/0.32.3/0.32.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/sharp/0.32.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/sharp/0.32.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/sharp/0.32.3/0.32.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/sharp/0.32.3/0.32.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.9` -> `1.10.12`](https://renovatebot.com/diffs/npm/turbo/1.10.9/1.10.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.9/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.9/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

##### Core Changes

-   Separate routing code from render servers: [#&#8203;52492](https://togithub.com/vercel/next.js/issues/52492)
-   Move Pages API rendering into bundle: [#&#8203;52149](https://togithub.com/vercel/next.js/issues/52149)
-   update Turbopack: [#&#8203;52986](https://togithub.com/vercel/next.js/issues/52986)
-   Turbopack: Refactoring module references: [#&#8203;52930](https://togithub.com/vercel/next.js/issues/52930)
-   Increase timeout for 404 tests: [#&#8203;52998](https://togithub.com/vercel/next.js/issues/52998)
-   Reland "Refine the not-found rendering process for app router": [#&#8203;52985](https://togithub.com/vercel/next.js/issues/52985)
-   Revert "Separate routing code from render servers ([#&#8203;52492](https://togithub.com/vercel/next.js/issues/52492))": [#&#8203;53016](https://togithub.com/vercel/next.js/issues/53016)

##### Documentation Changes

-   "Clarify the 'Existing Projects' section of the TypeScript docs:: [#&#8203;52944](https://togithub.com/vercel/next.js/issues/52944)
-   Update 02-dynamic-routes.mdx: [#&#8203;52975](https://togithub.com/vercel/next.js/issues/52975)
-   chore(docs): fix broken link: [#&#8203;53021](https://togithub.com/vercel/next.js/issues/53021)

##### Misc Changes

-   Update to latest version of turborepo: [#&#8203;52979](https://togithub.com/vercel/next.js/issues/52979)
-   Update `swc_core` to `v0.79.22`: [#&#8203;52945](https://togithub.com/vercel/next.js/issues/52945)
-   chore(ci): add pnpm workspace for github actions: [#&#8203;52976](https://togithub.com/vercel/next.js/issues/52976)
-   Changed package manager for install-native.mjs to pnpm: [#&#8203;52971](https://togithub.com/vercel/next.js/issues/52971)
-   update CODEOWNERS config: [#&#8203;53017](https://togithub.com/vercel/next.js/issues/53017)

##### Credits

Huge thanks to [@&#8203;ijjk](https://togithub.com/ijjk), [@&#8203;wyattjoh](https://togithub.com/wyattjoh), [@&#8203;sokra](https://togithub.com/sokra), [@&#8203;kdy1](https://togithub.com/kdy1), [@&#8203;alexkirsz](https://togithub.com/alexkirsz), [@&#8203;styfle](https://togithub.com/styfle), [@&#8203;ShaunFerris](https://togithub.com/ShaunFerris), [@&#8203;syedtaqi95](https://togithub.com/syedtaqi95), [@&#8203;Heidar-An](https://togithub.com/Heidar-An), [@&#8203;huozhi](https://togithub.com/huozhi), and [@&#8203;ztanner](https://togithub.com/ztanner) for helping!

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

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

##### Core Changes

-   fix: add missing `<preload>` for `next/image` in App Router: [#&#8203;52425](https://togithub.com/vercel/next.js/issues/52425)
-   Support metadata exports for server components not-found: [#&#8203;52678](https://togithub.com/vercel/next.js/issues/52678)
-   feat(next-swc): try to fallback native bindings with MODULE_NOT_FOUND: [#&#8203;52667](https://togithub.com/vercel/next.js/issues/52667)
-   Turbopack: Vc<T> and Turbo Engine type system improvements : [#&#8203;51792](https://togithub.com/vercel/next.js/issues/51792)
-   Fix runtime edge not-found handling: [#&#8203;52754](https://togithub.com/vercel/next.js/issues/52754)
-   fix: forward NavigateOptions in adaptForAppRouterInstance: [#&#8203;52498](https://togithub.com/vercel/next.js/issues/52498)
-   fix(output): do not slice pathname unless ends with `.txt`: [#&#8203;52640](https://togithub.com/vercel/next.js/issues/52640)
-   Fix tagsManifest initialization check: [#&#8203;52776](https://togithub.com/vercel/next.js/issues/52776)
-   Turbopack: Experimental dev app pages support: [#&#8203;52680](https://togithub.com/vercel/next.js/issues/52680)
-   Turbopack: move Asset::ident to more specific traits: [#&#8203;52683](https://togithub.com/vercel/next.js/issues/52683)
-   Fix tracking of ContextModule: [#&#8203;52795](https://togithub.com/vercel/next.js/issues/52795)
-   Set process.title for router and render workers: [#&#8203;52779](https://togithub.com/vercel/next.js/issues/52779)
-   fix Remove unnecessary await: [#&#8203;52800](https://togithub.com/vercel/next.js/issues/52800)
-   Revert "perf: improve URL validation performance": [#&#8203;52818](https://togithub.com/vercel/next.js/issues/52818)
-   Refactor the client entry plugin: [#&#8203;52798](https://togithub.com/vercel/next.js/issues/52798)
-   Turbopack: Add manifest generation to pages: [#&#8203;52793](https://togithub.com/vercel/next.js/issues/52793)
-   Turbopack: move references() to specific traits: [#&#8203;52822](https://togithub.com/vercel/next.js/issues/52822)
-   Update default `moduleResolution` in `tsconfig.json` from `node` to `bundler`: [#&#8203;51957](https://togithub.com/vercel/next.js/issues/51957)
-   Turbopack: Next.rs API improvements: [#&#8203;52856](https://togithub.com/vercel/next.js/issues/52856)
-   update turbopack: [#&#8203;52899](https://togithub.com/vercel/next.js/issues/52899)
-   Update vendor [@&#8203;vercel/og](https://togithub.com/vercel/og): [#&#8203;52897](https://togithub.com/vercel/next.js/issues/52897)
-   Fixed:[#&#8203;52853](https://togithub.com/vercel/next.js/issues/52853) Lacking 'color' attribute in IconDescriptor  Metadata: [#&#8203;52902](https://togithub.com/vercel/next.js/issues/52902)
-   Support basePath with edge runtime for Custom App Routes: [#&#8203;52910](https://togithub.com/vercel/next.js/issues/52910)
-   improve error DX on pages with RSC build errors: [#&#8203;52843](https://togithub.com/vercel/next.js/issues/52843)
-   fix: allow smooth scrolling if only hash changes (pages & app): [#&#8203;52915](https://togithub.com/vercel/next.js/issues/52915)
-   add edge support for next.rs API: [#&#8203;52885](https://togithub.com/vercel/next.js/issues/52885)
-   Allow general language codes in the Metadata API: [#&#8203;52920](https://togithub.com/vercel/next.js/issues/52920)
-   Fix client reference manifest for interception routes: [#&#8203;52961](https://togithub.com/vercel/next.js/issues/52961)
-   Refine the not-found rendering process for app router: [#&#8203;52790](https://togithub.com/vercel/next.js/issues/52790)
-   app-router: prefetching tweaks: [#&#8203;52949](https://togithub.com/vercel/next.js/issues/52949)
-   Revert "Refine the not-found rendering process for app router": [#&#8203;52977](https://togithub.com/vercel/next.js/issues/52977)

##### Documentation Changes

-   Update mention of route handlers for forms: [#&#8203;52781](https://togithub.com/vercel/next.js/issues/52781)
-   (Docs) add missing `js` version for `generateMetadata`.: [#&#8203;52763](https://togithub.com/vercel/next.js/issues/52763)
-   docs : fix typo in React cache example: [#&#8203;52787](https://togithub.com/vercel/next.js/issues/52787)
-   chore(docs): Add mentioning of HOSTNAME env variable for standalone output: [#&#8203;52804](https://togithub.com/vercel/next.js/issues/52804)
-   Fix typo in docs: [#&#8203;52815](https://togithub.com/vercel/next.js/issues/52815)
-   Update 02-edge-and-nodejs-runtimes.mdx: [#&#8203;52888](https://togithub.com/vercel/next.js/issues/52888)
-   chore(docs): add Typescript statically typed links mention in link doc: [#&#8203;52847](https://togithub.com/vercel/next.js/issues/52847)
-   chore(docs): fix typo in generate metadata docs: [#&#8203;52904](https://togithub.com/vercel/next.js/issues/52904)
-   fix example component in MDX documentation: [#&#8203;52753](https://togithub.com/vercel/next.js/issues/52753)
-   wrong content for next.config.mjs for MDX Plugins: [#&#8203;52738](https://togithub.com/vercel/next.js/issues/52738)
-   Update 06-lazy-loading.mdx: Incorrect filename in Example on "Importing Named Imports": [#&#8203;52932](https://togithub.com/vercel/next.js/issues/52932)
-   Change "publically" to "publicly" in the routing docs: [#&#8203;52966](https://togithub.com/vercel/next.js/issues/52966)

##### Example Changes

-   examples: export `force-dynamic` from all dynamic routes: [#&#8203;52916](https://togithub.com/vercel/next.js/issues/52916)

##### Misc Changes

-   chore: add "please simplify reproduction" comment: [#&#8203;52631](https://togithub.com/vercel/next.js/issues/52631)
-   update job concurrency: [#&#8203;52788](https://togithub.com/vercel/next.js/issues/52788)
-   Lock node version to 18.16: [#&#8203;52894](https://togithub.com/vercel/next.js/issues/52894)
-   Update runs-on tags
-   chore: add GitHub Action to manage "+1" comments: [#&#8203;52866](https://togithub.com/vercel/next.js/issues/52866)

##### Credits

Huge thanks to [@&#8203;styfle](https://togithub.com/styfle), [@&#8203;huozhi](https://togithub.com/huozhi), [@&#8203;balazsorban44](https://togithub.com/balazsorban44), [@&#8203;kwonoj](https://togithub.com/kwonoj), [@&#8203;alexkirsz](https://togithub.com/alexkirsz), [@&#8203;ijjk](https://togithub.com/ijjk), [@&#8203;Jeffrey-Zutt](https://togithub.com/Jeffrey-Zutt), [@&#8203;timneutkens](https://togithub.com/timneutkens), [@&#8203;vinaykulk621](https://togithub.com/vinaykulk621), [@&#8203;Ryan-Dia](https://togithub.com/Ryan-Dia), [@&#8203;sokra](https://togithub.com/sokra), [@&#8203;shuding](https://togithub.com/shuding), [@&#8203;steppefox](https://togithub.com/steppefox), [@&#8203;hiro0218](https://togithub.com/hiro0218), [@&#8203;rjsdnql123](https://togithub.com/rjsdnql123), [@&#8203;feedthejim](https://togithub.com/feedthejim), [@&#8203;fgiuliani](https://togithub.com/fgiuliani), [@&#8203;steven-tey](https://togithub.com/steven-tey), [@&#8203;AntoineBourin](https://togithub.com/AntoineBourin), [@&#8203;adamrhunter](https://togithub.com/adamrhunter), [@&#8203;darshanjain-entrepreneur](https://togithub.com/darshanjain-entrepreneur), [@&#8203;s0h311](https://togithub.com/s0h311), [@&#8203;wyattjoh](https://togithub.com/wyattjoh), [@&#8203;ztanner](https://togithub.com/ztanner), [@&#8203;djreillo](https://togithub.com/djreillo), [@&#8203;dijonmusters](https://togithub.com/dijonmusters), and [@&#8203;cassidoo](https://togithub.com/cassidoo) for helping!

</details>

<details>
<summary>dmnd/dedent (dedent)</summary>

### [`v1.3.0`](https://togithub.com/dmnd/dedent/blob/HEAD/CHANGELOG.md#130)

[Compare Source](https://togithub.com/dmnd/dedent/compare/b6cdb9d53120c18b42b5ef0d92ee0f00871091d4...c966051f70520231fba80adfc7b5f176141a1949)

-   fix: add missing exports field to package.json ([#&#8203;59](https://togithub.com/dmnd/dedent/issues/59))

</details>

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

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

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

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

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

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

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

</details>

<details>
<summary>prettier/eslint-config-prettier (eslint-config-prettier)</summary>

### [`v8.9.0`](https://togithub.com/prettier/eslint-config-prettier/blob/HEAD/CHANGELOG.md#Version-890-2023-07-27)

[Compare Source](https://togithub.com/prettier/eslint-config-prettier/compare/88ba724915c0d52c822d7c0d499be21c30c5380a...aa1aa345068994705365671a76ec17b4dad00554)

-   Added: \[vue/array-element-newline]. Thanks to [@&#8203;xcatliu](https://togithub.com/xcatliu)!

</details>

<details>
<summary>sindresorhus/execa (execa)</summary>

### [`v7.2.0`](https://togithub.com/sindresorhus/execa/releases/tag/v7.2.0)

[Compare Source](https://togithub.com/sindresorhus/execa/compare/v7.1.1...v7.2.0)

-   Add `cwd` error property ([#&#8203;565](https://togithub.com/sindresorhus/execa/issues/565))  [`f57fdec`](https://togithub.com/sindresorhus/execa/commit/f57fdec)

</details>

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

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.17.0...2.17.1)

-   Correct --help and --version in help text (closes [#&#8203;173](https://togithub.com/webpro/knip/issues/173)) ([`81180f7`](https://togithub.com/webpro/knip/commit/81180f7))
-   Add `+server` to svelte entry pattern (fixes [#&#8203;170](https://togithub.com/webpro/knip/issues/170)) ([`ecad69d`](https://togithub.com/webpro/knip/commit/ecad69d))
-   Improve argument handling in script resolvers (fixes [#&#8203;171](https://togithub.com/webpro/knip/issues/171)) ([`c724068`](https://togithub.com/webpro/knip/commit/c724068))

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.16.2...2.17.0)

-   Minor improvements for some plugin coverage ([`a4e7a89`](https://togithub.com/webpro/knip/commit/a4e7a89))
-   Fix test coverage to show original source files ([`b1814dd`](https://togithub.com/webpro/knip/commit/b1814dd))
-   Remove unused `isDynamic` variable ([`db9a941`](https://togithub.com/webpro/knip/commit/db9a941))
-   Pass source file path to compilers ([#&#8203;169](https://togithub.com/webpro/knip/issues/169)) ([`bc3eb55`](https://togithub.com/webpro/knip/commit/bc3eb55))

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.16.1...2.16.2)

-   Dogfoodin' is awesome ([`2df8594`](https://togithub.com/webpro/knip/commit/2df8594))
-   Skip import types only in --production mode (fixes [#&#8203;167](https://togithub.com/webpro/knip/issues/167)) ([`e870966`](https://togithub.com/webpro/knip/commit/e870966))
-   Include `context` when resolving `entries` in webpack config (fixes [#&#8203;165](https://togithub.com/webpro/knip/issues/165)) ([`7892f24`](https://togithub.com/webpro/knip/commit/7892f24))
-   Extend fixture for .vue files (closes [#&#8203;166](https://togithub.com/webpro/knip/issues/166)) ([`89296a9`](https://togithub.com/webpro/knip/commit/89296a9))
-   Simplify importCall visitor, let TS do the heavy lifting + improve import fixtures ([`4897063`](https://togithub.com/webpro/knip/commit/4897063))
-   Add minimal test to cover cli (closes [#&#8203;44](https://togithub.com/webpro/knip/issues/44)) ([`10220fe`](https://togithub.com/webpro/knip/commit/10220fe))
-   Add lockfile + cache ([`6a5854c`](https://togithub.com/webpro/knip/commit/6a5854c))
-   Refactor test scripts ([`f4cea7c`](https://togithub.com/webpro/knip/commit/f4cea7c))
-   Move fixtures to root ([`fda4216`](https://togithub.com/webpro/knip/commit/fda4216))
-   Add swc + prepare to move fixtures ([`43eea06`](https://togithub.com/webpro/knip/commit/43eea06))

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.16.0...2.16.1)

-   Update dev dependencies ([`2d8eefe`](https://togithub.com/webpro/knip/commit/2d8eefe))
-   Add fixture for .vue files ([`3658311`](https://togithub.com/webpro/knip/commit/3658311))
-   Fix pattern of import call property assignment (fixes [#&#8203;164](https://togithub.com/webpro/knip/issues/164)) ([`abcbd29`](https://togithub.com/webpro/knip/commit/abcbd29))

</details>

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

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

[Compare Source](https://togithub.com/postcss/postcss/compare/8.4.26...8.4.27)

-   Fixed `Container` clone methods types.

</details>

<details>
<summary>lovell/sharp (sharp)</summary>

### [`v0.32.4`](https://togithub.com/lovell/sharp/compare/v0.32.3...v0.32.4)

[Compare Source](https://togithub.com/lovell/sharp/compare/v0.32.3...v0.32.4)

</details>

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

### [`v1.10.12`](https://togithub.com/vercel/turbo/releases/tag/v1.10.12): Turborepo 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



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



#### 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 - "before 4am on Monday" in timezone Asia/Kolkata, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`20.4.2` -> `20.4.5`](https://renovatebot.com/diffs/npm/@types%2fnode/20.4.2/20.4.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.4.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.4.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.4.2/20.4.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.4.2/20.4.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [dedent](https://togithub.com/dmnd/dedent) | [`1.2.0` -> `1.3.0`](https://renovatebot.com/diffs/npm/dedent/1.2.0/1.3.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/dedent/1.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/dedent/1.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/dedent/1.2.0/1.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/dedent/1.2.0/1.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-config-canonical](https://togithub.com/gajus/eslint-config-canonical) | [`41.1.3` -> `41.1.7`](https://renovatebot.com/diffs/npm/eslint-config-canonical/41.1.3/41.1.7) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-canonical/41.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-canonical/41.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-canonical/41.1.3/41.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-canonical/41.1.3/41.1.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-config-prettier](https://togithub.com/prettier/eslint-config-prettier) | [`8.8.0` -> `8.9.0`](https://renovatebot.com/diffs/npm/eslint-config-prettier/8.8.0/8.9.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-prettier/8.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-prettier/8.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-prettier/8.8.0/8.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-prettier/8.8.0/8.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [execa](https://togithub.com/sindresorhus/execa) | [`7.1.1` -> `7.2.0`](https://renovatebot.com/diffs/npm/execa/7.1.1/7.2.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/execa/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/execa/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/execa/7.1.1/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/execa/7.1.1/7.2.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [knip](https://togithub.com/webpro/knip) | [`2.16.0` -> `2.17.1`](https://renovatebot.com/diffs/npm/knip/2.16.0/2.17.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/knip/2.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/knip/2.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/knip/2.16.0/2.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/knip/2.16.0/2.17.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.9` -> `1.10.12`](https://renovatebot.com/diffs/npm/turbo/1.10.9/1.10.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.9/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.9/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>dmnd/dedent (dedent)</summary>

### [`v1.3.0`](https://togithub.com/dmnd/dedent/blob/HEAD/CHANGELOG.md#130)

[Compare Source](https://togithub.com/dmnd/dedent/compare/b6cdb9d53120c18b42b5ef0d92ee0f00871091d4...c966051f70520231fba80adfc7b5f176141a1949)

-   fix: add missing exports field to package.json ([#&#8203;59](https://togithub.com/dmnd/dedent/issues/59))

</details>

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

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

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

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

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

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

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

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

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

</details>

<details>
<summary>prettier/eslint-config-prettier (eslint-config-prettier)</summary>

### [`v8.9.0`](https://togithub.com/prettier/eslint-config-prettier/blob/HEAD/CHANGELOG.md#Version-890-2023-07-27)

[Compare Source](https://togithub.com/prettier/eslint-config-prettier/compare/v8.8.0...v8.9.0)

-   Added: \[vue/array-element-newline]. Thanks to [@&#8203;xcatliu](https://togithub.com/xcatliu)!

</details>

<details>
<summary>sindresorhus/execa (execa)</summary>

### [`v7.2.0`](https://togithub.com/sindresorhus/execa/releases/tag/v7.2.0)

[Compare Source](https://togithub.com/sindresorhus/execa/compare/v7.1.1...v7.2.0)

-   Add `cwd` error property ([#&#8203;565](https://togithub.com/sindresorhus/execa/issues/565))  [`f57fdec`](https://togithub.com/sindresorhus/execa/commit/f57fdec)

</details>

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

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.17.0...2.17.1)

-   Correct --help and --version in help text (closes [#&#8203;173](https://togithub.com/webpro/knip/issues/173)) ([`81180f7`](https://togithub.com/webpro/knip/commit/81180f7))
-   Add `+server` to svelte entry pattern (fixes [#&#8203;170](https://togithub.com/webpro/knip/issues/170)) ([`ecad69d`](https://togithub.com/webpro/knip/commit/ecad69d))
-   Improve argument handling in script resolvers (fixes [#&#8203;171](https://togithub.com/webpro/knip/issues/171)) ([`c724068`](https://togithub.com/webpro/knip/commit/c724068))

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.16.2...2.17.0)

-   Minor improvements for some plugin coverage ([`a4e7a89`](https://togithub.com/webpro/knip/commit/a4e7a89))
-   Fix test coverage to show original source files ([`b1814dd`](https://togithub.com/webpro/knip/commit/b1814dd))
-   Remove unused `isDynamic` variable ([`db9a941`](https://togithub.com/webpro/knip/commit/db9a941))
-   Pass source file path to compilers ([#&#8203;169](https://togithub.com/webpro/knip/issues/169)) ([`bc3eb55`](https://togithub.com/webpro/knip/commit/bc3eb55))

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.16.1...2.16.2)

-   Dogfoodin' is awesome ([`2df8594`](https://togithub.com/webpro/knip/commit/2df8594))
-   Skip import types only in --production mode (fixes [#&#8203;167](https://togithub.com/webpro/knip/issues/167)) ([`e870966`](https://togithub.com/webpro/knip/commit/e870966))
-   Include `context` when resolving `entries` in webpack config (fixes [#&#8203;165](https://togithub.com/webpro/knip/issues/165)) ([`7892f24`](https://togithub.com/webpro/knip/commit/7892f24))
-   Extend fixture for .vue files (closes [#&#8203;166](https://togithub.com/webpro/knip/issues/166)) ([`89296a9`](https://togithub.com/webpro/knip/commit/89296a9))
-   Simplify importCall visitor, let TS do the heavy lifting + improve import fixtures ([`4897063`](https://togithub.com/webpro/knip/commit/4897063))
-   Add minimal test to cover cli (closes [#&#8203;44](https://togithub.com/webpro/knip/issues/44)) ([`10220fe`](https://togithub.com/webpro/knip/commit/10220fe))
-   Add lockfile + cache ([`6a5854c`](https://togithub.com/webpro/knip/commit/6a5854c))
-   Refactor test scripts ([`f4cea7c`](https://togithub.com/webpro/knip/commit/f4cea7c))
-   Move fixtures to root ([`fda4216`](https://togithub.com/webpro/knip/commit/fda4216))
-   Add swc + prepare to move fixtures ([`43eea06`](https://togithub.com/webpro/knip/commit/43eea06))

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

[Compare Source](https://togithub.com/webpro/knip/compare/2.16.0...2.16.1)

-   Update dev dependencies ([`2d8eefe`](https://togithub.com/webpro/knip/commit/2d8eefe))
-   Add fixture for .vue files ([`3658311`](https://togithub.com/webpro/knip/commit/3658311))
-   Fix pattern of import call property assignment (fixes [#&#8203;164](https://togithub.com/webpro/knip/issues/164)) ([`abcbd29`](https://togithub.com/webpro/knip/commit/abcbd29))

</details>

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

### [`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 - "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).
github-merge-queue bot pushed a commit to levaintech/keychain that referenced this pull request Jul 31, 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.12`](https://renovatebot.com/diffs/npm/turbo/1.10.9/1.10.12) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.9/1.10.12?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.9/1.10.12?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.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)

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.11 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[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)

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.10 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[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)

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

#### What's Changed

##### Changelog

- chore: no longer convert in relative unix path constructor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[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.

---

- [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzNi4xMS4wIiwidXBkYXRlZEluVmVyIjoiMzYuMTEuMCIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

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

This PR contains the following updates:

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

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

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

#### New Contributors

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

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

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

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

#### What's Changed

##### Changelog

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

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

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

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

#### What's Changed

##### Changelog

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

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

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

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

#### What's Changed

##### Changelog

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

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

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

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

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

#### What's Changed

##### Changelog

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

#### New Contributors

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

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

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

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

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

#### What's Changed

##### Changelog

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

#### New Contributors

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

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

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

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

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

#### What's Changed

##### Changelog

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

#### New Contributors

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

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

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

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

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

#### What's Changed

##### Changelog

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

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

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

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

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

#### What's Changed

##### Changelog

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

#### New Contributors

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

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

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

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

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

#### What's Changed

##### Changelog

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

#### New Contributors

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

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

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

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

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

#### What's Changed

##### Changelog

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

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

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

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

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

#### What's Changed

##### Changelog

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

#### New Contributors

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

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

</details>

---

### Configuration

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

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

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

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

---

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

---

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

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

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

Successfully merging this pull request may close these issues.

[turborepo] The ^ char in dependsOn does not work when using alias package name
2 participants