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

chore: move lockfile ffi boundary #4629

Merged
merged 18 commits into from Apr 26, 2023

Conversation

chris-olszewski
Copy link
Contributor

Description

In order to avoid Go holding onto memory that's been allocated by Rust we parse the lockfile each time we need to make a lockfile call. This worked fine for the npm implementation as we just needed parse the JSON and it was usable, but Berry requires a lot more work/allocations that makes this strategy unfeasible.

A quick sketch of the changes in this PR:

  • Moves the traversal of the lockfile to be the final step of building the package graph
  • We now calculate all of the closures of all workspaces at once
  • Rust FFI now takes the package manager string to select the lockfile implementation. This is a quick prefactor to prepare for hooking up the berry lockfile

Reviewer notes:

  • Each commit can be reviewed on it's own, the first commit ended up getting reverted down the stack so it can be skipped.

Testing Instructions

Existing unit tests/integration tests. Manual verification of correct pruning behavior for the npm and pnpm monorepos created by create-turbo@latest

@vercel
Copy link

vercel bot commented Apr 18, 2023

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

Name Status Preview Comments Updated (UTC)
examples-gatsby-web 🔄 Building (Inspect) Visit Preview Apr 25, 2023 6:09pm
examples-nonmonorepo 🔄 Building (Inspect) Visit Preview Apr 25, 2023 6:09pm
examples-svelte-web 🔄 Building (Inspect) Apr 25, 2023 6:09pm
8 Ignored Deployments
Name Status Preview Comments Updated (UTC)
examples-basic-web ⬜️ Ignored (Inspect) Visit Preview Apr 25, 2023 6:09pm
examples-cra-web ⬜️ Ignored (Inspect) Visit Preview Apr 25, 2023 6:09pm
examples-designsystem-docs ⬜️ Ignored (Inspect) Visit Preview Apr 25, 2023 6:09pm
examples-kitchensink-blog ⬜️ Ignored (Inspect) Visit Preview Apr 25, 2023 6:09pm
examples-native-web ⬜️ Ignored (Inspect) Visit Preview Apr 25, 2023 6:09pm
examples-tailwind-web ⬜️ Ignored (Inspect) Apr 25, 2023 6:09pm
examples-vite-web ⬜️ Ignored (Inspect) Apr 25, 2023 6:09pm
turbo-site ⬜️ Ignored (Inspect) Visit Preview Apr 25, 2023 6:09pm

@chris-olszewski chris-olszewski marked this pull request as ready for review April 18, 2023 18:25
@chris-olszewski chris-olszewski requested a review from a team as a code owner April 18, 2023 18:25
@github-actions
Copy link
Contributor

github-actions bot commented Apr 18, 2023

🟢 CI successful 🟢

Thanks

Copy link
Contributor

@nathanhammond nathanhammond left a comment

Choose a reason for hiding this comment

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

There's no tests added here and existing coverage is super-spotty. It's a pretty-invasive change. That leaves me a little concerned. Is there testing that could be reasonably added to constrain the ffi serialization and object reconstruction from the message?

If you want to go for bonus points, constraining ExternalDepsHash to always be "" when there is not a lockfile, and that it is always populated with something when it is would be good. I think that it's Hash("") sometimes, which is at least distinct?

sort.Sort(lockfile.ByKey(pkg.TransitiveDeps))
hashOfExternalDeps, err := fs.HashObject(pkg.TransitiveDeps)
if err != nil {
if err := pkg.SetExternalDeps(depSet); err != nil {
Copy link
Contributor

Choose a reason for hiding this comment

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

Thing I investigated during review: why is this "every time" if you have a lockfile and not simply collapsing to "" when empty?

The answer: ExternalDepsHash being set to "" is basically a None sigil which is correctly distinct from Hash(Some({})).

cli/internal/fs/package_json.go Show resolved Hide resolved
dependency := dependency.(lockfile.Package)
p.TransitiveDeps = append(p.TransitiveDeps, dependency)
}
sort.Sort(lockfile.ByKey(p.TransitiveDeps))
Copy link
Contributor

Choose a reason for hiding this comment

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

Teach me! Why was string sorting here not enough? (I read it but I don't have enough context to understand why we do it this way.)

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Quick history of the TransitiveDeps field:

  • Initially this was a string of the format {packageName}@{version}, worked when we just had yarn1 support, but for pnpm these two pieces of information weren't enough. So we moved to using lockfile keys instead.
  • I moved from the {lockfileKey}@{version} to the Package struct (a mistake in hindsight), just because the string wasn't useful unless you correctly split it into two parts and I was afraid of someone (myself) doing strings.Split("/@babel/types@1.2.3@1.2.3", "@") to try to get the version and end up with garbage
  • Most recently there was an issue where pnpm package aliases where we weren't correctly merging lockfile keys. We basically had an issue of the same package being listed as Package{Key: "/foo/1.2.3", Version: "1.2.3"} and another as Package{Key: "/foo/1.2.3", Version: "npm:foo@1.2.3"} (See fix: better support for pnpm aliases #4555 for a more complete description).

@@ -231,6 +224,29 @@ func BuildPackageGraph(repoRoot turbopath.AbsoluteSystemPath, rootPackageJSON *f
}
c.WorkspaceInfos.PackageJSONs[util.RootPkgName] = rootPackageJSON

if lockFile, err := c.PackageManager.ReadLockfile(repoRoot, rootPackageJSON); err != nil {
warnings.append(err)
rootPackageJSON.TransitiveDeps = []lockfile.Package{}
Copy link
Contributor

Choose a reason for hiding this comment

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

Does this work as just nil?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Haven't done a full code trace, but it should. This was just copied from previous behavior.

Edit: Checked and nil works just fine here

cli/internal/context/context.go Outdated Show resolved Hide resolved
if err != nil {
warnings.append(err)
// reset external deps to original state
externalDeps = mapset.NewSet()
Copy link
Contributor

Choose a reason for hiding this comment

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

What was this doing?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

This was here instead of proper control flow, if the closure calculation errored we would override the return value with an empty set. This would then get translated to pkg.TransitiveDeps = make([]lockfile.Package, 0) and nothing would get added.

cli/internal/context/context.go Outdated Show resolved Hide resolved

func transitiveDeps(cFunc func(C.Buffer) C.Buffer, content []byte, pkgDir string, unresolvedDeps map[string]string) ([]*ffi_proto.LockfilePackage, error) {
// TransitiveDeps returns the transitive external deps for all provided workspaces
func TransitiveDeps(content []byte, packageManager string, workspaces map[string]map[string]string) (map[string]*ffi_proto.LockfilePackageList, error) {
Copy link
Contributor

Choose a reason for hiding this comment

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

Confirming understanding: this has to do a full walk because if there are floating versions the top-level deps could have not changed, but somewhere way down the tree could have.

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Exactly, if someone blows away the lockfile and does a fresh install all of the top level specifiers will remain the same, but what version gets installed might change.

crates/turborepo-ffi/src/lockfile.rs Outdated Show resolved Hide resolved
crates/turborepo-ffi/src/lockfile.rs Outdated Show resolved Hide resolved
Copy link
Contributor

@NicholasLYang NicholasLYang left a comment

Choose a reason for hiding this comment

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

The code makes sense to me, at least to the extent that I understand the lockfile code. The testing situation I'll let you and Nathan determine

cli/internal/context/context.go Outdated Show resolved Hide resolved
ProtobufError(#[from] prost::DecodeError),
Protobuf(#[from] prost::DecodeError),
#[error("unsupported package manager")]
UnsupportedPackageManager(String),
Copy link
Contributor

Choose a reason for hiding this comment

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

not super relevant to the PR but if we have new error variants, perhaps we could add backtrace to them?

crates/turborepo-ffi/src/lockfile.rs Outdated Show resolved Hide resolved
@chris-olszewski chris-olszewski merged commit 1c8d3aa into main Apr 26, 2023
46 checks passed
@chris-olszewski chris-olszewski deleted the olszewski/move_lockfile_ffi_boundary branch April 26, 2023 18:21
chris-olszewski added a commit that referenced this pull request Apr 27, 2023
### Description

Built on top of #4629

Overview of changes:
- ~~Change `subgraph` so we calculate workspace's closure in parallel in
a similar manner to Go~~ This had to get reverted, it appears that rayon
was causing [compilation issues on
linux](https://github.com/vercel/turbo/actions/runs/4791974785/jobs/8522988391#step:4:648)
 - `npm_subgraph` -> `subgraph` makes this FFI call generic
- Addition of an optional `resolutions` map to the `subgraph` and
`transitive_closure`, this is only used by Berry. In the ideal world
this would be all of the root `package.json`, but serializing all of
that via protobuf is overkill since berry is the only lockfile that
needs that info and we only use that field.
- Addition of `patches` FFI function, this wasn't needed before as NPM
doesn't have patch files encoded in the lockfile
- Addition of `global_changes` FFI function, previously for NPM we were
just doing this in Go since there were just two fields we needed to
check and parsing JSON is cheap.
- Switches lockfile usage of berry from the Go implementation to the
Rust one introduced in #4589

Reviewer notes:
- The passing of the optional resolutions map is very icky and one off,
but this is the only lockfile the requires additional information to
properly parse. Once the package graph is squarely in Rust land this
should go back to being more generic.

This will finally close out #2791

### Testing Instructions
Added a new integration test that uses resolutions. This integration
test invokes the new `patches` FFI call.

For a full test of the new resolution feature, clone and follow the
instructions in the
[repro](https://github.com/erj826/turbo-prune-bug-repro-11-21)

The `lockfile_aware_caching` integration tests all hit the new
`global_changes` FFI callsite and provide test coverage.

---------

Co-authored-by: Alexander Lyon <arlyon@me.com>
kodiakhq bot added a commit to weareinreach/InReach that referenced this pull request May 12, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@aws-sdk/client-cognito-identity-provider](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-cognito-identity-provider) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | [`3.329.0` -> `3.332.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-cognito-identity-provider/3.329.0/3.332.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.332.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.332.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.332.0/compatibility-slim/3.329.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.332.0/confidence-slim/3.329.0)](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.329.0` -> `3.332.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.329.0/3.332.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.332.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.332.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.332.0/compatibility-slim/3.329.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.332.0/confidence-slim/3.329.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@opentelemetry/exporter-trace-otlp-http](https://togithub.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/exporter-trace-otlp-http) ([source](https://togithub.com/open-telemetry/opentelemetry-js)) | [`0.38.0` -> `0.39.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2fexporter-trace-otlp-http/0.38.0/0.39.0) | [![age](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fexporter-trace-otlp-http/0.39.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fexporter-trace-otlp-http/0.39.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fexporter-trace-otlp-http/0.39.0/compatibility-slim/0.38.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fexporter-trace-otlp-http/0.39.0/confidence-slim/0.38.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@opentelemetry/instrumentation](https://togithub.com/open-telemetry/opentelemetry-js/tree/main/experimental/packages/opentelemetry-instrumentation) ([source](https://togithub.com/open-telemetry/opentelemetry-js)) | [`0.38.0` -> `0.39.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2finstrumentation/0.38.0/0.39.0) | [![age](https://badges.renovateapi.com/packages/npm/@opentelemetry%2finstrumentation/0.39.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@opentelemetry%2finstrumentation/0.39.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@opentelemetry%2finstrumentation/0.39.0/compatibility-slim/0.38.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@opentelemetry%2finstrumentation/0.39.0/confidence-slim/0.38.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@opentelemetry/resources](https://togithub.com/open-telemetry/opentelemetry-js/tree/main/packages/opentelemetry-resources) ([source](https://togithub.com/open-telemetry/opentelemetry-js)) | [`1.12.0` -> `1.13.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2fresources/1.12.0/1.13.0) | [![age](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fresources/1.13.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fresources/1.13.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fresources/1.13.0/compatibility-slim/1.12.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fresources/1.13.0/confidence-slim/1.12.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@opentelemetry/sdk-trace-base](https://togithub.com/open-telemetry/opentelemetry-js/tree/main/packages/opentelemetry-sdk-trace-base) ([source](https://togithub.com/open-telemetry/opentelemetry-js)) | [`1.12.0` -> `1.13.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2fsdk-trace-base/1.12.0/1.13.0) | [![age](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fsdk-trace-base/1.13.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fsdk-trace-base/1.13.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fsdk-trace-base/1.13.0/compatibility-slim/1.12.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fsdk-trace-base/1.13.0/confidence-slim/1.12.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@opentelemetry/sdk-trace-node](https://togithub.com/open-telemetry/opentelemetry-js/tree/main/packages/opentelemetry-sdk-trace-node) ([source](https://togithub.com/open-telemetry/opentelemetry-js)) | [`1.12.0` -> `1.13.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2fsdk-trace-node/1.12.0/1.13.0) | [![age](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fsdk-trace-node/1.13.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fsdk-trace-node/1.13.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fsdk-trace-node/1.13.0/compatibility-slim/1.12.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fsdk-trace-node/1.13.0/confidence-slim/1.12.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@opentelemetry/semantic-conventions](https://togithub.com/open-telemetry/opentelemetry-js/tree/main/packages/opentelemetry-semantic-conventions) ([source](https://togithub.com/open-telemetry/opentelemetry-js)) | [`1.12.0` -> `1.13.0`](https://renovatebot.com/diffs/npm/@opentelemetry%2fsemantic-conventions/1.9.1/1.13.0) | [![age](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fsemantic-conventions/1.13.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fsemantic-conventions/1.13.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fsemantic-conventions/1.13.0/compatibility-slim/1.9.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@opentelemetry%2fsemantic-conventions/1.13.0/confidence-slim/1.9.1)](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.0.10` -> `7.0.11`](https://renovatebot.com/diffs/npm/@storybook%2faddon-a11y/7.0.10/7.0.11) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.11/compatibility-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-a11y/7.0.11/confidence-slim/7.0.10)](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.0.10` -> `7.0.11`](https://renovatebot.com/diffs/npm/@storybook%2faddon-actions/7.0.10/7.0.11) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-actions/7.0.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-actions/7.0.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-actions/7.0.11/compatibility-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-actions/7.0.11/confidence-slim/7.0.10)](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.0.10` -> `7.0.11`](https://renovatebot.com/diffs/npm/@storybook%2faddon-docs/7.0.10/7.0.11) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-docs/7.0.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-docs/7.0.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-docs/7.0.11/compatibility-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-docs/7.0.11/confidence-slim/7.0.10)](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.0.10` -> `7.0.11`](https://renovatebot.com/diffs/npm/@storybook%2faddon-essentials/7.0.10/7.0.11) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.11/compatibility-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-essentials/7.0.11/confidence-slim/7.0.10)](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.0.10` -> `7.0.11`](https://renovatebot.com/diffs/npm/@storybook%2faddon-interactions/7.0.10/7.0.11) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.11/compatibility-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-interactions/7.0.11/confidence-slim/7.0.10)](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.0.10` -> `7.0.11`](https://renovatebot.com/diffs/npm/@storybook%2faddon-links/7.0.10/7.0.11) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.11/compatibility-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-links/7.0.11/confidence-slim/7.0.10)](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.0.10` -> `7.0.11`](https://renovatebot.com/diffs/npm/@storybook%2faddon-viewport/7.0.10/7.0.11) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.11/compatibility-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2faddon-viewport/7.0.11/confidence-slim/7.0.10)](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.0.10` -> `7.0.11`](https://renovatebot.com/diffs/npm/@storybook%2fcomponents/7.0.10/7.0.11) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fcomponents/7.0.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fcomponents/7.0.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fcomponents/7.0.11/compatibility-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fcomponents/7.0.11/confidence-slim/7.0.10)](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.0.10` -> `7.0.11`](https://renovatebot.com/diffs/npm/@storybook%2fcore-events/7.0.10/7.0.11) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fcore-events/7.0.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fcore-events/7.0.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fcore-events/7.0.11/compatibility-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fcore-events/7.0.11/confidence-slim/7.0.10)](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.0.10` -> `7.0.11`](https://renovatebot.com/diffs/npm/@storybook%2fmanager-api/7.0.10/7.0.11) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fmanager-api/7.0.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fmanager-api/7.0.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fmanager-api/7.0.11/compatibility-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fmanager-api/7.0.11/confidence-slim/7.0.10)](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.0.10` -> `7.0.11`](https://renovatebot.com/diffs/npm/@storybook%2fnextjs/7.0.10/7.0.11) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.11/compatibility-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fnextjs/7.0.11/confidence-slim/7.0.10)](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.0.10` -> `7.0.11`](https://renovatebot.com/diffs/npm/@storybook%2fpreview-api/7.0.10/7.0.11) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2fpreview-api/7.0.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2fpreview-api/7.0.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2fpreview-api/7.0.11/compatibility-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2fpreview-api/7.0.11/confidence-slim/7.0.10)](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.0.10` -> `7.0.11`](https://renovatebot.com/diffs/npm/@storybook%2freact/7.0.10/7.0.11) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.11/compatibility-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2freact/7.0.11/confidence-slim/7.0.10)](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.0.10` -> `7.0.11`](https://renovatebot.com/diffs/npm/@storybook%2ftheming/7.0.10/7.0.11) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2ftheming/7.0.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2ftheming/7.0.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2ftheming/7.0.11/compatibility-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2ftheming/7.0.11/confidence-slim/7.0.10)](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.0.10` -> `7.0.11`](https://renovatebot.com/diffs/npm/@storybook%2ftypes/7.0.10/7.0.11) | [![age](https://badges.renovateapi.com/packages/npm/@storybook%2ftypes/7.0.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@storybook%2ftypes/7.0.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@storybook%2ftypes/7.0.11/compatibility-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@storybook%2ftypes/7.0.11/confidence-slim/7.0.10)](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.7` -> `18.16.8`](https://renovatebot.com/diffs/npm/@types%2fnode/18.16.7/18.16.8) | [![age](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.8/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.8/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.8/compatibility-slim/18.16.7)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.8/confidence-slim/18.16.7)](https://docs.renovatebot.com/merge-confidence/) |
| [@vercel/kv](https://vercel.com) ([source](https://togithub.com/vercel/storage)) | [`0.1.2` -> `0.2.0`](https://renovatebot.com/diffs/npm/@vercel%2fkv/0.1.2/0.2.0) | [![age](https://badges.renovateapi.com/packages/npm/@vercel%2fkv/0.2.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@vercel%2fkv/0.2.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@vercel%2fkv/0.2.0/compatibility-slim/0.1.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@vercel%2fkv/0.2.0/confidence-slim/0.1.2)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-plugin-turbo](https://togithub.com/vercel/turbo) | [`1.9.3` -> `1.9.4`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/1.9.3/1.9.4) | [![age](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.9.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.9.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.9.4/compatibility-slim/1.9.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.9.4/confidence-slim/1.9.3)](https://docs.renovatebot.com/merge-confidence/) |
| [react-phone-number-input](https://gitlab.com/catamphetamine/react-phone-number-input) | [`3.2.22` -> `3.2.23`](https://renovatebot.com/diffs/npm/react-phone-number-input/3.2.22/3.2.23) | [![age](https://badges.renovateapi.com/packages/npm/react-phone-number-input/3.2.23/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/react-phone-number-input/3.2.23/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/react-phone-number-input/3.2.23/compatibility-slim/3.2.22)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/react-phone-number-input/3.2.23/confidence-slim/3.2.22)](https://docs.renovatebot.com/merge-confidence/) |
| [storybook](https://togithub.com/storybookjs/storybook/tree/next/code/lib/cli) ([source](https://togithub.com/storybookjs/storybook)) | [`7.0.10` -> `7.0.11`](https://renovatebot.com/diffs/npm/storybook/7.0.10/7.0.11) | [![age](https://badges.renovateapi.com/packages/npm/storybook/7.0.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/storybook/7.0.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/storybook/7.0.11/compatibility-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/storybook/7.0.11/confidence-slim/7.0.10)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.9.3` -> `1.9.4`](https://renovatebot.com/diffs/npm/turbo/1.9.3/1.9.4) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.9.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.9.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.9.4/compatibility-slim/1.9.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.9.4/confidence-slim/1.9.3)](https://docs.renovatebot.com/merge-confidence/) |
| [webpack](https://togithub.com/webpack/webpack) | [`5.82.0` -> `5.82.1`](https://renovatebot.com/diffs/npm/webpack/5.82.0/5.82.1) | [![age](https://badges.renovateapi.com/packages/npm/webpack/5.82.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/webpack/5.82.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/webpack/5.82.1/compatibility-slim/5.82.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/webpack/5.82.1/confidence-slim/5.82.0)](https://docs.renovatebot.com/merge-confidence/) |
| [zod-to-json-schema](https://togithub.com/StefanTerdell/zod-to-json-schema) | [`3.21.0` -> `3.21.1`](https://renovatebot.com/diffs/npm/zod-to-json-schema/3.21.0/3.21.1) | [![age](https://badges.renovateapi.com/packages/npm/zod-to-json-schema/3.21.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/zod-to-json-schema/3.21.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/zod-to-json-schema/3.21.1/compatibility-slim/3.21.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/zod-to-json-schema/3.21.1/confidence-slim/3.21.0)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

### [`v3.332.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-cognito-identity-provider/CHANGELOG.md#&#8203;33320-httpsgithubcomawsaws-sdk-js-v3comparev33310v33320-2023-05-11)

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

**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.332.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#&#8203;33320-httpsgithubcomawsaws-sdk-js-v3comparev33310v33320-2023-05-11)

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

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

### [`v3.331.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#&#8203;33310-httpsgithubcomawsaws-sdk-js-v3comparev33300v33310-2023-05-10)

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

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

</details>

<details>
<summary>open-telemetry/opentelemetry-js</summary>

### [`v0.39.0`](https://togithub.com/open-telemetry/opentelemetry-js/compare/a04090010ee18e17487b449984807cc2b7b6e3e6...8fc76896595aac912bf9e15d4f19c167317844c8)

[Compare Source](https://togithub.com/open-telemetry/opentelemetry-js/compare/a04090010ee18e17487b449984807cc2b7b6e3e6...8fc76896595aac912bf9e15d4f19c167317844c8)

</details>

<details>
<summary>storybookjs/storybook</summary>

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

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

##### Bug Fixes

-   Toolbars: Fix title behavior in UI [#&#8203;22496](https://togithub.com/storybooks/storybook/pull/22496)
-   CLI: Fix storybook upgrade precheckfailure object [#&#8203;22517](https://togithub.com/storybooks/storybook/pull/22517)
-   CLI: Throw errors instead of rejecting promises [#&#8203;22515](https://togithub.com/storybooks/storybook/pull/22515)
-   CLI: Remove unsupported frameworks/renderers and improve builder detection [#&#8203;22492](https://togithub.com/storybooks/storybook/pull/22492)
-   Web-components: Fix source decorator to handle document fragments [#&#8203;22513](https://togithub.com/storybooks/storybook/pull/22513)
-   Core: Fix windows path error in StoryStore v6 [#&#8203;22512](https://togithub.com/storybooks/storybook/pull/22512)
-   CLI: Do not show a migration summary on sb init [#&#8203;22109](https://togithub.com/storybooks/storybook/pull/22109)
-   UI: Show current search shortcut in search box sidebar [#&#8203;21619](https://togithub.com/storybooks/storybook/pull/21619)
-   Outline: Fix additional outline border in docs mode [#&#8203;21773](https://togithub.com/storybooks/storybook/pull/21773)
-   Measure: Deactivate when switching to Docs mode [#&#8203;21602](https://togithub.com/storybooks/storybook/pull/21602)
-   CSF: Expose story id in composeStories [#&#8203;22471](https://togithub.com/storybooks/storybook/pull/22471)
-   CLI: Prompt to force initialization when storybook folder is detected [#&#8203;22392](https://togithub.com/storybooks/storybook/pull/22392)
-   UI: Fix css inconsistency in Button and Icon components [#&#8203;22497](https://togithub.com/storybooks/storybook/pull/22497)

</details>

<details>
<summary>vercel/storage</summary>

### [`v0.2.0`](https://togithub.com/vercel/storage/blob/HEAD/packages/kv/CHANGELOG.md#&#8203;020)

[Compare Source](https://togithub.com/vercel/storage/compare/@vercel/kv@0.1.2...@vercel/kv@0.2.0)

##### Minor Changes

-   [`30e3f04`](https://togithub.com/vercel/storage/commit/30e3f04): move default export to named kv export

</details>

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

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

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



#### What's Changed

##### Changelog

-   chore: delete unused npm lockfile impl in go by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4605
-   Env var run summary data generation by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4529
-   Fix path by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4643
-   fix(turborepo): Switching back to git command instead of git2 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4606
-   feat(turbo): add spaces link by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#4632
-   Include logs when posting task summary by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4642
-   Always print the url if we have one by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4660
-   Remove unused import by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4665
-   feat: Add rust implementation of Yarn3+ lockfile by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4589
-   fix(turbo-utils): support old workspace format by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#4682
-   fix: rebuild protobuf code and update ffi callsite by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4685
-   Use spaceID from turbo.json if available by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4687
-   port(turborepo): Config by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4520
-   Existing and error logs behavior by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4656
-   update deps by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#4700
-   chore: move lockfile ffi boundary by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4629
-   Invoke prysk with the directory name to ensure all tests run by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4715
-   Fix errors-only integration test by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4713
-   fix(turborepo): Turbostate deserialization by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4712
-   docs(prisma): add required version field in example by [@&#8203;skauffmann](https://togithub.com/skauffmann) in [vercel/turbo#4676
-   feat: Use Rust Berry lockfile impl by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4684
-   Move `TURBO_FORCE` config env var detection to Rust by [@&#8203;smaeda-ks](https://togithub.com/smaeda-ks) in [vercel/turbo#4590
-   fix: turborepo unused code lints by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4727
-   Delete unused git_go file by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4730
-   We no longer require libc6-compat by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4729
-   Make sure that we only hash the env pairs. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4708
-   Inline a constant so it's individualized to each task run by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4735
-   chore(turborepo): Fixed clippy warnings by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4744
-   chore: Disallows unknown fields in JSON sent by Rust. by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4753
-   fix: allow for workplace descriptors without a protocol by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4755
-   fix: berry prune including all builtin patch descriptors by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4770
-   make RepoConfig and CommandBase use absolute system paths by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#4693
-   chore: remove unused path imports by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4780
-   Send run summary to Spaces even without --summarize flag by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4785
-   port(turborepo): Package Manager Inference by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4655
-   Send turbo version to run payload by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4786
-   Add gitbranch and sha into spaces payload by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4734
-   Stripped down unix path by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4767
-   Remove --serial from the docs. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4813
-   Don't cache test:setup task by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4773
-   Prefactor package hashing by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4816
-   chore: add underlying error to lockfile error messages by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4800
-   Fix basic example to update on dependency changes by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4835
-   fix(examples): with rollup by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#4836
-   fix(docs): internal workspace cache by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#4838
-   Update basic example for App Router. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#4839
-   Update with-rollup with App Router. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#4848
-   Clarify how task skipping works when scripts are not implemented by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4851
-   fix: no longer include peer dependencies in transitive closures by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4824
-   Optional framework inference by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4788
-   Fix/daemon fixups by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#4831
-   Hack to get correct log file by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4873
-   Update with-npm with App Router. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#4845
-   Update with-tailwind with App Router. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#4849
-   Update with-yarn with App Router. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#4850
-   chore: update `update-informer` to 1.0 by [@&#8203;mgrachev](https://togithub.com/mgrachev) in [vercel/turbo#4867
-   fix: sort tasks in run summary output by task id by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4837
-   Drop go implementation of recursive copy by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4874
-   Add a new page for task dependencies by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4852
-   fix(turborepo): Fixed test by killing process when test is done by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4887
-   First pass at file hashing for a package by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4820
-   Remove recursive copy build tags. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4898
-   feature(turborepo): AbsoluteSystemPath by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4841
-   feat(turbo): g by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#4896

#### New Contributors

-   [@&#8203;seeplusplus](https://togithub.com/seeplusplus) made their first contribution in [vercel/turbo#4667
-   [@&#8203;skauffmann](https://togithub.com/skauffmann) made their first contribution in [vercel/turbo#4676
-   [@&#8203;smaeda-ks](https://togithub.com/smaeda-ks) made their first contribution in [vercel/turbo#4590
-   [@&#8203;rakesh-blacksof](https://togithub.com/rakesh-blacksof) made their first contribution in [vercel/turbo#4774
-   [@&#8203;ihmpavel](https://togithub.com/ihmpavel) made their first contribution in [vercel/turbo#4743
-   [@&#8203;mgrachev](https://togithub.com/mgrachev) made their first contribution in [vercel/turbo#4867

**Full Changelog**: vercel/turbo@v1.9.3...v1.9.4

</details>

<details>
<summary>catamphetamine/react-phone-number-input</summary>

### [`v3.2.23`](https://gitlab.com/catamphetamine/react-phone-number-input/compare/v3.2.22...v3.2.23)

[Compare Source](https://gitlab.com/catamphetamine/react-phone-number-input/compare/v3.2.22...v3.2.23)

</details>

<details>
<summary>webpack/webpack</summary>

### [`v5.82.1`](https://togithub.com/webpack/webpack/releases/tag/v5.82.1)

[Compare Source](https://togithub.com/webpack/webpack/compare/v5.82.0...v5.82.1)

#### Bug Fixes

-   \[CSS] - Support nesting in CSS modules and bug fixes by [@&#8203;alexander-akait](https://togithub.com/alexander-akait) in [webpack/webpack#17133
-   \[CSS] - Fix crash with `importModule` when CSS enabled by [@&#8203;alexander-akait](https://togithub.com/alexander-akait) in [webpack/webpack#17140
-   Fix bug where `output.hashFunction` was failing to generate debug hash by [@&#8203;ahabhgk](https://togithub.com/ahabhgk) in [webpack/webpack#16950
-   Reduce the amount of generated code for chunk loading by [@&#8203;lvivski](https://togithub.com/lvivski) in [webpack/webpack#17151
-   Use module preload for ESM module output by [@&#8203;alexander-akait](https://togithub.com/alexander-akait) in [webpack/webpack#17143

#### Developer Experience

-   Improve module type strictness for Module.prototype.type expand ModuleTypeConstants by [@&#8203;TheLarkInn](https://togithub.com/TheLarkInn) in [webpack/webpack#17136

#### Dependencies & Maintenance

-   Update package.json description by [@&#8203;JeraldVin](https://togithub.com/JeraldVin) in [webpack/webpack#17145
-   Bump webpack-cli from 5.0.2 to 5.1.0 by [@&#8203;dependabot](https://togithub.com/dependabot) in [webpack/webpack#17146
-   Bump core-js from 3.30.1 to 3.30.2 by [@&#8203;dependabot](https://togithub.com/dependabot) in [webpack/webpack#17149
-   Bump enhanced-resolve to v5.14.0 by [@&#8203;snitin315](https://togithub.com/snitin315) in [webpack/webpack#17160

#### New Contributors

-   [@&#8203;JeraldVin](https://togithub.com/JeraldVin) made their first contribution in [webpack/webpack#17145

**Full Changelog**: webpack/webpack@v5.82.0...v5.82.1

</details>

<details>
<summary>StefanTerdell/zod-to-json-schema</summary>

### [`v3.21.1`](https://togithub.com/StefanTerdell/zod-to-json-schema/compare/57dcca17eec5120ce407630284e803efaf2d2f73...0a80938b6a4eb093ca63b0648cd6b3f346ee2eb9)

[Compare Source](https://togithub.com/StefanTerdell/zod-to-json-schema/compare/57dcca17eec5120ce407630284e803efaf2d2f73...0a80938b6a4eb093ca63b0648cd6b3f346ee2eb9)

</details>

---

### Configuration

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

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

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

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

---

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

---

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



PR-URL: #479
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/js-bottomsheet that referenced this pull request May 12, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`^1.9.3` -> `^1.9.4`](https://renovatebot.com/diffs/npm/turbo/1.9.3/1.9.4) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.9.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.9.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.9.4/compatibility-slim/1.9.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.9.4/confidence-slim/1.9.3)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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



#### What's Changed

##### Changelog

-   chore: delete unused npm lockfile impl in go by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4605
-   Env var run summary data generation by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4529
-   Fix path by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4643
-   fix(turborepo): Switching back to git command instead of git2 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4606
-   feat(turbo): add spaces link by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#4632
-   Include logs when posting task summary by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4642
-   Always print the url if we have one by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4660
-   Remove unused import by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4665
-   feat: Add rust implementation of Yarn3+ lockfile by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4589
-   fix(turbo-utils): support old workspace format by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#4682
-   fix: rebuild protobuf code and update ffi callsite by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4685
-   Use spaceID from turbo.json if available by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4687
-   port(turborepo): Config by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4520
-   Existing and error logs behavior by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4656
-   update deps by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#4700
-   chore: move lockfile ffi boundary by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4629
-   Invoke prysk with the directory name to ensure all tests run by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4715
-   Fix errors-only integration test by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4713
-   fix(turborepo): Turbostate deserialization by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4712
-   docs(prisma): add required version field in example by [@&#8203;skauffmann](https://togithub.com/skauffmann) in [vercel/turbo#4676
-   feat: Use Rust Berry lockfile impl by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4684
-   Move `TURBO_FORCE` config env var detection to Rust by [@&#8203;smaeda-ks](https://togithub.com/smaeda-ks) in [vercel/turbo#4590
-   fix: turborepo unused code lints by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4727
-   Delete unused git_go file by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4730
-   We no longer require libc6-compat by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4729
-   Make sure that we only hash the env pairs. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4708
-   Inline a constant so it's individualized to each task run by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4735
-   chore(turborepo): Fixed clippy warnings by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4744
-   chore: Disallows unknown fields in JSON sent by Rust. by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4753
-   fix: allow for workplace descriptors without a protocol by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4755
-   fix: berry prune including all builtin patch descriptors by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4770
-   make RepoConfig and CommandBase use absolute system paths by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#4693
-   chore: remove unused path imports by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4780
-   Send run summary to Spaces even without --summarize flag by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4785
-   port(turborepo): Package Manager Inference by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4655
-   Send turbo version to run payload by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4786
-   Add gitbranch and sha into spaces payload by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4734
-   Stripped down unix path by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4767
-   Remove --serial from the docs. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4813
-   Don't cache test:setup task by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4773
-   Prefactor package hashing by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4816
-   chore: add underlying error to lockfile error messages by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4800
-   Fix basic example to update on dependency changes by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4835
-   fix(examples): with rollup by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#4836
-   fix(docs): internal workspace cache by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#4838
-   Update basic example for App Router. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#4839
-   Update with-rollup with App Router. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#4848
-   Clarify how task skipping works when scripts are not implemented by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4851
-   fix: no longer include peer dependencies in transitive closures by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4824
-   Optional framework inference by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4788
-   Fix/daemon fixups by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#4831
-   Hack to get correct log file by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4873
-   Update with-npm with App Router. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#4845
-   Update with-tailwind with App Router. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#4849
-   Update with-yarn with App Router. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#4850
-   chore: update `update-informer` to 1.0 by [@&#8203;mgrachev](https://togithub.com/mgrachev) in [vercel/turbo#4867
-   fix: sort tasks in run summary output by task id by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4837
-   Drop go implementation of recursive copy by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4874
-   Add a new page for task dependencies by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4852
-   fix(turborepo): Fixed test by killing process when test is done by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4887
-   First pass at file hashing for a package by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4820
-   Remove recursive copy build tags. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4898
-   feature(turborepo): AbsoluteSystemPath by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4841
-   feat(turbo): g by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#4896

#### New Contributors

-   [@&#8203;seeplusplus](https://togithub.com/seeplusplus) made their first contribution in [vercel/turbo#4667
-   [@&#8203;skauffmann](https://togithub.com/skauffmann) made their first contribution in [vercel/turbo#4676
-   [@&#8203;smaeda-ks](https://togithub.com/smaeda-ks) made their first contribution in [vercel/turbo#4590
-   [@&#8203;rakesh-blacksof](https://togithub.com/rakesh-blacksof) made their first contribution in [vercel/turbo#4774
-   [@&#8203;ihmpavel](https://togithub.com/ihmpavel) made their first contribution in [vercel/turbo#4743
-   [@&#8203;mgrachev](https://togithub.com/mgrachev) made their first contribution in [vercel/turbo#4867

**Full Changelog**: vercel/turbo@v1.9.3...v1.9.4

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`^1.9.3` ->
`^1.9.4`](https://renovatebot.com/diffs/npm/turbo/1.9.3/1.9.4) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.9.4/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.9.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.9.4/compatibility-slim/1.9.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.9.4/confidence-slim/1.9.3)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

- chore: delete unused npm lockfile impl in go by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4605
- Env var run summary data generation by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4529
- Fix path by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4643
- fix(turborepo): Switching back to git command instead of git2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4606
- feat(turbo): add spaces link by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4632
- Include logs when posting task summary by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4642
- Always print the url if we have one by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4660
- Remove unused import by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4665
- feat: Add rust implementation of Yarn3+ lockfile by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4589
- fix(turbo-utils): support old workspace format by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4682
- fix: rebuild protobuf code and update ffi callsite by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4685
- Use spaceID from turbo.json if available by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4687
- port(turborepo): Config by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4520
- Existing and error logs behavior by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4656
- update deps by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#4700
- chore: move lockfile ffi boundary by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4629
- Invoke prysk with the directory name to ensure all tests run by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4715
- Fix errors-only integration test by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4713
- fix(turborepo): Turbostate deserialization by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4712
- docs(prisma): add required version field in example by
[@&#8203;skauffmann](https://togithub.com/skauffmann) in
[vercel/turbo#4676
- feat: Use Rust Berry lockfile impl by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4684
- Move `TURBO_FORCE` config env var detection to Rust by
[@&#8203;smaeda-ks](https://togithub.com/smaeda-ks) in
[vercel/turbo#4590
- fix: turborepo unused code lints by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4727
- Delete unused git_go file by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4730
- We no longer require libc6-compat by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4729
- Make sure that we only hash the env pairs. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4708
- Inline a constant so it's individualized to each task run by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4735
- chore(turborepo): Fixed clippy warnings by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4744
- chore: Disallows unknown fields in JSON sent by Rust. by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4753
- fix: allow for workplace descriptors without a protocol by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4755
- fix: berry prune including all builtin patch descriptors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4770
- make RepoConfig and CommandBase use absolute system paths by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#4693
- chore: remove unused path imports by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4780
- Send run summary to Spaces even without --summarize flag by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4785
- port(turborepo): Package Manager Inference by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4655
- Send turbo version to run payload by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4786
- Add gitbranch and sha into spaces payload by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4734
- Stripped down unix path by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4767
- Remove --serial from the docs. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4813
- Don't cache test:setup task by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4773
- Prefactor package hashing by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4816
- chore: add underlying error to lockfile error messages by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4800
- Fix basic example to update on dependency changes by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4835
- fix(examples): with rollup by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4836
- fix(docs): internal workspace cache by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4838
- Update basic example for App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4839
- Update with-rollup with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4848
- Clarify how task skipping works when scripts are not implemented by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4851
- fix: no longer include peer dependencies in transitive closures by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4824
- Optional framework inference by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4788
- Fix/daemon fixups by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#4831
- Hack to get correct log file by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4873
- Update with-npm with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4845
- Update with-tailwind with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4849
- Update with-yarn with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4850
- chore: update `update-informer` to 1.0 by
[@&#8203;mgrachev](https://togithub.com/mgrachev) in
[vercel/turbo#4867
- fix: sort tasks in run summary output by task id by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4837
- Drop go implementation of recursive copy by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4874
- Add a new page for task dependencies by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4852
- fix(turborepo): Fixed test by killing process when test is done by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4887
- First pass at file hashing for a package by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4820
- Remove recursive copy build tags. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4898
- feature(turborepo): AbsoluteSystemPath by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4841
- feat(turbo): g by [@&#8203;tknickman](https://togithub.com/tknickman)
in
[vercel/turbo#4896

#### New Contributors

- [@&#8203;seeplusplus](https://togithub.com/seeplusplus) made their
first contribution in
[vercel/turbo#4667
- [@&#8203;skauffmann](https://togithub.com/skauffmann) made their first
contribution in
[vercel/turbo#4676
- [@&#8203;smaeda-ks](https://togithub.com/smaeda-ks) made their first
contribution in
[vercel/turbo#4590
- [@&#8203;rakesh-blacksof](https://togithub.com/rakesh-blacksof) made
their first contribution in
[vercel/turbo#4774
- [@&#8203;ihmpavel](https://togithub.com/ihmpavel) made their first
contribution in
[vercel/turbo#4743
- [@&#8203;mgrachev](https://togithub.com/mgrachev) made their first
contribution in
[vercel/turbo#4867

**Full Changelog**:
vercel/turbo@v1.9.3...v1.9.4

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

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

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`^1.9.3` ->
`^1.9.4`](https://renovatebot.com/diffs/npm/turbo/1.9.3/1.9.4) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.9.4/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.9.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.9.4/compatibility-slim/1.9.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.9.4/confidence-slim/1.9.3)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

- chore: delete unused npm lockfile impl in go by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4605
- Env var run summary data generation by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4529
- Fix path by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4643
- fix(turborepo): Switching back to git command instead of git2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4606
- feat(turbo): add spaces link by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4632
- Include logs when posting task summary by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4642
- Always print the url if we have one by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4660
- Remove unused import by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4665
- feat: Add rust implementation of Yarn3+ lockfile by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4589
- fix(turbo-utils): support old workspace format by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4682
- fix: rebuild protobuf code and update ffi callsite by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4685
- Use spaceID from turbo.json if available by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4687
- port(turborepo): Config by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4520
- Existing and error logs behavior by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4656
- update deps by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#4700
- chore: move lockfile ffi boundary by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4629
- Invoke prysk with the directory name to ensure all tests run by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4715
- Fix errors-only integration test by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4713
- fix(turborepo): Turbostate deserialization by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4712
- docs(prisma): add required version field in example by
[@&#8203;skauffmann](https://togithub.com/skauffmann) in
[vercel/turbo#4676
- feat: Use Rust Berry lockfile impl by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4684
- Move `TURBO_FORCE` config env var detection to Rust by
[@&#8203;smaeda-ks](https://togithub.com/smaeda-ks) in
[vercel/turbo#4590
- fix: turborepo unused code lints by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4727
- Delete unused git_go file by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4730
- We no longer require libc6-compat by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4729
- Make sure that we only hash the env pairs. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4708
- Inline a constant so it's individualized to each task run by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4735
- chore(turborepo): Fixed clippy warnings by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4744
- chore: Disallows unknown fields in JSON sent by Rust. by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4753
- fix: allow for workplace descriptors without a protocol by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4755
- fix: berry prune including all builtin patch descriptors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4770
- make RepoConfig and CommandBase use absolute system paths by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#4693
- chore: remove unused path imports by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4780
- Send run summary to Spaces even without --summarize flag by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4785
- port(turborepo): Package Manager Inference by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4655
- Send turbo version to run payload by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4786
- Add gitbranch and sha into spaces payload by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4734
- Stripped down unix path by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4767
- Remove --serial from the docs. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4813
- Don't cache test:setup task by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4773
- Prefactor package hashing by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4816
- chore: add underlying error to lockfile error messages by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4800
- Fix basic example to update on dependency changes by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4835
- fix(examples): with rollup by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4836
- fix(docs): internal workspace cache by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4838
- Update basic example for App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4839
- Update with-rollup with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4848
- Clarify how task skipping works when scripts are not implemented by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4851
- fix: no longer include peer dependencies in transitive closures by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4824
- Optional framework inference by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4788
- Fix/daemon fixups by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#4831
- Hack to get correct log file by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4873
- Update with-npm with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4845
- Update with-tailwind with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4849
- Update with-yarn with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4850
- chore: update `update-informer` to 1.0 by
[@&#8203;mgrachev](https://togithub.com/mgrachev) in
[vercel/turbo#4867
- fix: sort tasks in run summary output by task id by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4837
- Drop go implementation of recursive copy by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4874
- Add a new page for task dependencies by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4852
- fix(turborepo): Fixed test by killing process when test is done by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4887
- First pass at file hashing for a package by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4820
- Remove recursive copy build tags. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4898
- feature(turborepo): AbsoluteSystemPath by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4841
- feat(turbo): g by [@&#8203;tknickman](https://togithub.com/tknickman)
in
[vercel/turbo#4896

#### New Contributors

- [@&#8203;seeplusplus](https://togithub.com/seeplusplus) made their
first contribution in
[vercel/turbo#4667
- [@&#8203;skauffmann](https://togithub.com/skauffmann) made their first
contribution in
[vercel/turbo#4676
- [@&#8203;smaeda-ks](https://togithub.com/smaeda-ks) made their first
contribution in
[vercel/turbo#4590
- [@&#8203;rakesh-blacksof](https://togithub.com/rakesh-blacksof) made
their first contribution in
[vercel/turbo#4774
- [@&#8203;ihmpavel](https://togithub.com/ihmpavel) made their first
contribution in
[vercel/turbo#4743
- [@&#8203;mgrachev](https://togithub.com/mgrachev) made their first
contribution in
[vercel/turbo#4867

**Full Changelog**:
vercel/turbo@v1.9.3...v1.9.4

</details>

---

### Configuration

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

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

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

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

---

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

---

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

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

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`1.9.3` ->
`1.9.5`](https://renovatebot.com/diffs/npm/turbo/1.9.3/1.9.5) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.9.5/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.9.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.9.5/compatibility-slim/1.9.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.9.5/confidence-slim/1.9.3)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

- fix: check if user passes absolute path to prune by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4891
- Submit originatingUser with Run by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4875
- Use cacheitem to restore HTTP cache. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4634
- Build turbo once to build JS packages before publishing by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4910
- fix(cli): example should imply copy by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4923
- Remove fallback to configured git user by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4928
- Partial revert of
[#&#8203;4820](https://togithub.com/vercel/turbo/issues/4820). by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4938

#### New Contributors

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

**Full Changelog**:
vercel/turbo@v1.9.4...v1.9.5

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

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

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

#### What's Changed

##### Changelog

- chore: delete unused npm lockfile impl in go by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4605
- Env var run summary data generation by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4529
- Fix path by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4643
- fix(turborepo): Switching back to git command instead of git2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4606
- feat(turbo): add spaces link by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4632
- Include logs when posting task summary by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4642
- Always print the url if we have one by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4660
- Remove unused import by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4665
- feat: Add rust implementation of Yarn3+ lockfile by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4589
- fix(turbo-utils): support old workspace format by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4682
- fix: rebuild protobuf code and update ffi callsite by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4685
- Use spaceID from turbo.json if available by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4687
- port(turborepo): Config by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4520
- Existing and error logs behavior by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4656
- update deps by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#4700
- chore: move lockfile ffi boundary by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4629
- Invoke prysk with the directory name to ensure all tests run by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4715
- Fix errors-only integration test by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4713
- fix(turborepo): Turbostate deserialization by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4712
- docs(prisma): add required version field in example by
[@&#8203;skauffmann](https://togithub.com/skauffmann) in
[vercel/turbo#4676
- feat: Use Rust Berry lockfile impl by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4684
- Move `TURBO_FORCE` config env var detection to Rust by
[@&#8203;smaeda-ks](https://togithub.com/smaeda-ks) in
[vercel/turbo#4590
- fix: turborepo unused code lints by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4727
- Delete unused git_go file by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4730
- We no longer require libc6-compat by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4729
- Make sure that we only hash the env pairs. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4708
- Inline a constant so it's individualized to each task run by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4735
- chore(turborepo): Fixed clippy warnings by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4744
- chore: Disallows unknown fields in JSON sent by Rust. by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4753
- fix: allow for workplace descriptors without a protocol by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4755
- fix: berry prune including all builtin patch descriptors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4770
- make RepoConfig and CommandBase use absolute system paths by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#4693
- chore: remove unused path imports by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4780
- Send run summary to Spaces even without --summarize flag by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4785
- port(turborepo): Package Manager Inference by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4655
- Send turbo version to run payload by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4786
- Add gitbranch and sha into spaces payload by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4734
- Stripped down unix path by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4767
- Remove --serial from the docs. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4813
- Don't cache test:setup task by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4773
- Prefactor package hashing by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4816
- chore: add underlying error to lockfile error messages by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4800
- Fix basic example to update on dependency changes by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4835
- fix(examples): with rollup by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4836
- fix(docs): internal workspace cache by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4838
- Update basic example for App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4839
- Update with-rollup with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4848
- Clarify how task skipping works when scripts are not implemented by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4851
- fix: no longer include peer dependencies in transitive closures by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4824
- Optional framework inference by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4788
- Fix/daemon fixups by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#4831
- Hack to get correct log file by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4873
- Update with-npm with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4845
- Update with-tailwind with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4849
- Update with-yarn with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4850
- chore: update `update-informer` to 1.0 by
[@&#8203;mgrachev](https://togithub.com/mgrachev) in
[vercel/turbo#4867
- fix: sort tasks in run summary output by task id by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4837
- Drop go implementation of recursive copy by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4874
- Add a new page for task dependencies by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4852
- fix(turborepo): Fixed test by killing process when test is done by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4887
- First pass at file hashing for a package by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4820
- Remove recursive copy build tags. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4898
- feature(turborepo): AbsoluteSystemPath by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4841
- feat(turbo): g by [@&#8203;tknickman](https://togithub.com/tknickman)
in
[vercel/turbo#4896

#### New Contributors

- [@&#8203;seeplusplus](https://togithub.com/seeplusplus) made their
first contribution in
[vercel/turbo#4667
- [@&#8203;skauffmann](https://togithub.com/skauffmann) made their first
contribution in
[vercel/turbo#4676
- [@&#8203;smaeda-ks](https://togithub.com/smaeda-ks) made their first
contribution in
[vercel/turbo#4590
- [@&#8203;rakesh-blacksof](https://togithub.com/rakesh-blacksof) made
their first contribution in
[vercel/turbo#4774
- [@&#8203;ihmpavel](https://togithub.com/ihmpavel) made their first
contribution in
[vercel/turbo#4743
- [@&#8203;mgrachev](https://togithub.com/mgrachev) made their first
contribution in
[vercel/turbo#4867

**Full Changelog**:
vercel/turbo@v1.9.3...v1.9.4

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

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

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@next/bundle-analyzer](https://togithub.com/vercel/next.js) | [`13.4.1` -> `13.4.2`](https://renovatebot.com/diffs/npm/@next%2fbundle-analyzer/13.4.1/13.4.2) | [![age](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.4.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.4.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.4.2/compatibility-slim/13.4.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.4.2/confidence-slim/13.4.1)](https://docs.renovatebot.com/merge-confidence/) |
| [@next/env](https://togithub.com/vercel/next.js) | [`13.4.1` -> `13.4.2`](https://renovatebot.com/diffs/npm/@next%2fenv/13.4.2/13.4.2) | [![age](https://badges.renovateapi.com/packages/npm/@next%2fenv/13.4.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@next%2fenv/13.4.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@next%2fenv/13.4.2/compatibility-slim/13.4.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@next%2fenv/13.4.2/confidence-slim/13.4.2)](https://docs.renovatebot.com/merge-confidence/) |
| [@next/eslint-plugin-next](https://togithub.com/vercel/next.js) | [`13.4.1` -> `13.4.2`](https://renovatebot.com/diffs/npm/@next%2feslint-plugin-next/13.4.1/13.4.2) | [![age](https://badges.renovateapi.com/packages/npm/@next%2feslint-plugin-next/13.4.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@next%2feslint-plugin-next/13.4.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@next%2feslint-plugin-next/13.4.2/compatibility-slim/13.4.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@next%2feslint-plugin-next/13.4.2/confidence-slim/13.4.1)](https://docs.renovatebot.com/merge-confidence/) |
| [@octokit/core](https://togithub.com/octokit/core.js) | [`4.2.0` -> `4.2.1`](https://renovatebot.com/diffs/npm/@octokit%2fcore/4.2.0/4.2.1) | [![age](https://badges.renovateapi.com/packages/npm/@octokit%2fcore/4.2.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@octokit%2fcore/4.2.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@octokit%2fcore/4.2.1/compatibility-slim/4.2.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@octokit%2fcore/4.2.1/confidence-slim/4.2.0)](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.8` -> `18.16.13`](https://renovatebot.com/diffs/npm/@types%2fnode/18.16.8/18.16.13) | [![age](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.13/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.13/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.13/compatibility-slim/18.16.8)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.13/confidence-slim/18.16.8)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/experimental-utils](https://togithub.com/typescript-eslint/typescript-eslint) | [`5.59.5` -> `5.59.6`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fexperimental-utils/5.59.5/5.59.6) | [![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fexperimental-utils/5.59.6/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fexperimental-utils/5.59.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fexperimental-utils/5.59.6/compatibility-slim/5.59.5)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fexperimental-utils/5.59.6/confidence-slim/5.59.5)](https://docs.renovatebot.com/merge-confidence/) |
| [all-contributors-cli](https://togithub.com/all-contributors/all-contributors-cli) | [`6.25.0` -> `6.25.1`](https://renovatebot.com/diffs/npm/all-contributors-cli/6.25.0/6.25.1) | [![age](https://badges.renovateapi.com/packages/npm/all-contributors-cli/6.25.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/all-contributors-cli/6.25.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/all-contributors-cli/6.25.1/compatibility-slim/6.25.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/all-contributors-cli/6.25.1/confidence-slim/6.25.0)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-plugin-tailwindcss](https://togithub.com/francoismassart/eslint-plugin-tailwindcss) | [`3.11.0` -> `3.12.0`](https://renovatebot.com/diffs/npm/eslint-plugin-tailwindcss/3.11.0/3.12.0) | [![age](https://badges.renovateapi.com/packages/npm/eslint-plugin-tailwindcss/3.12.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/eslint-plugin-tailwindcss/3.12.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/eslint-plugin-tailwindcss/3.12.0/compatibility-slim/3.11.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/eslint-plugin-tailwindcss/3.12.0/confidence-slim/3.11.0)](https://docs.renovatebot.com/merge-confidence/) |
| [knip](https://togithub.com/webpro/knip) | [`2.10.4` -> `2.11.0`](https://renovatebot.com/diffs/npm/knip/2.10.4/2.11.0) | [![age](https://badges.renovateapi.com/packages/npm/knip/2.11.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/knip/2.11.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/knip/2.11.0/compatibility-slim/2.10.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/knip/2.11.0/confidence-slim/2.10.4)](https://docs.renovatebot.com/merge-confidence/) |
| [prettier-plugin-tailwindcss](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss) | [`0.2.8` -> `0.3.0`](https://renovatebot.com/diffs/npm/prettier-plugin-tailwindcss/0.2.8/0.3.0) | [![age](https://badges.renovateapi.com/packages/npm/prettier-plugin-tailwindcss/0.3.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/prettier-plugin-tailwindcss/0.3.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/prettier-plugin-tailwindcss/0.3.0/compatibility-slim/0.2.8)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/prettier-plugin-tailwindcss/0.3.0/confidence-slim/0.2.8)](https://docs.renovatebot.com/merge-confidence/) |
| [stylelint](https://stylelint.io) ([source](https://togithub.com/stylelint/stylelint)) | [`15.6.1` -> `15.6.2`](https://renovatebot.com/diffs/npm/stylelint/15.6.1/15.6.2) | [![age](https://badges.renovateapi.com/packages/npm/stylelint/15.6.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/stylelint/15.6.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/stylelint/15.6.2/compatibility-slim/15.6.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/stylelint/15.6.2/confidence-slim/15.6.1)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.9.3` -> `1.9.8`](https://renovatebot.com/diffs/npm/turbo/1.9.3/1.9.8) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.9.8/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.9.8/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.9.8/compatibility-slim/1.9.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.9.8/confidence-slim/1.9.3)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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

##### Core Changes

-   make sure server component externals only apply to files resolvable by node: [#&#8203;49147](https://togithub.com/vercel/next.js/issues/49147)
-   Fix link not being GC'd sometimes: [#&#8203;49318](https://togithub.com/vercel/next.js/issues/49318)
-   Fix issue where nextP is not replaced in searchParams: [#&#8203;49315](https://togithub.com/vercel/next.js/issues/49315)
-   Add typescript version to next-info: [#&#8203;49346](https://togithub.com/vercel/next.js/issues/49346)
-   Upgrade React to 18.3.0-canary-16d053d59-20230506: [#&#8203;49402](https://togithub.com/vercel/next.js/issues/49402)
-   Remove empty config warning: [#&#8203;49435](https://togithub.com/vercel/next.js/issues/49435)
-   app-router: add startTransition call to revalidate dispatcher: [#&#8203;49453](https://togithub.com/vercel/next.js/issues/49453)
-   Inline static data buffer instead of using fs read: [#&#8203;49323](https://togithub.com/vercel/next.js/issues/49323)
-   Revert "Temporarily disable app dir export integration test": [#&#8203;49311](https://togithub.com/vercel/next.js/issues/49311)
-   Add link to Server Actions docs.: [#&#8203;49384](https://togithub.com/vercel/next.js/issues/49384)
-   Replace metadata clone with custom handler in dev: [#&#8203;49343](https://togithub.com/vercel/next.js/issues/49343)
-   Add request-async-storage to the shared layer: [#&#8203;49470](https://togithub.com/vercel/next.js/issues/49470)
-   Fix revalidate: false detection in app: [#&#8203;49473](https://togithub.com/vercel/next.js/issues/49473)
-   Fix metadata image route encoding: [#&#8203;49482](https://togithub.com/vercel/next.js/issues/49482)
-   Fix actions redirect handling: [#&#8203;49483](https://togithub.com/vercel/next.js/issues/49483)
-   Restrict `useOptimistic` and `useFormStatus` APIs on the server layer: [#&#8203;49331](https://togithub.com/vercel/next.js/issues/49331)
-   Fix external rewrite with body: [#&#8203;49487](https://togithub.com/vercel/next.js/issues/49487)
-   fix: better error message with an invalid assetPrefix: [#&#8203;49403](https://togithub.com/vercel/next.js/issues/49403)
-   Fix Node Crypto polyfill: [#&#8203;49288](https://togithub.com/vercel/next.js/issues/49288)
-   Fix: Router.query contains \_next when using middleware with dynamic routes: [#&#8203;48753](https://togithub.com/vercel/next.js/issues/48753)
-   type: update React.CSSProperties type to Record: [#&#8203;49186](https://togithub.com/vercel/next.js/issues/49186)
-   Fix server CSS imports and HMR not working properly in specific conditions: [#&#8203;49462](https://togithub.com/vercel/next.js/issues/49462)
-   Fix HMR support for server layer imported SASS and SCSS: [#&#8203;49534](https://togithub.com/vercel/next.js/issues/49534)
-   Support `.bind` syntax with Action functions: [#&#8203;49422](https://togithub.com/vercel/next.js/issues/49422)
-   ci(test): enable turbopack test: [#&#8203;49466](https://togithub.com/vercel/next.js/issues/49466)
-   feat(next-core): relay transform plugin: [#&#8203;48899](https://togithub.com/vercel/next.js/issues/48899)
-   Fix canonical url for dynamic routes: [#&#8203;49512](https://togithub.com/vercel/next.js/issues/49512)
-   Add experimental compile/generate handling: [#&#8203;49491](https://togithub.com/vercel/next.js/issues/49491)
-   chore: cross-platform `rm -rf` script: [#&#8203;49529](https://togithub.com/vercel/next.js/issues/49529)
-   refactor(next-core): remove ast cloning in custom transform: [#&#8203;49560](https://togithub.com/vercel/next.js/issues/49560)
-   fix: a11y issues in react-dev-overlay: [#&#8203;49460](https://togithub.com/vercel/next.js/issues/49460)
-   Add tests for HMR: [#&#8203;49206](https://togithub.com/vercel/next.js/issues/49206)
-   Add stub Route type for typedRoutes: [#&#8203;48099](https://togithub.com/vercel/next.js/issues/48099)
-   Add test for appdir referenced images: [#&#8203;49242](https://togithub.com/vercel/next.js/issues/49242)
-   feat: Allow trace-level logging for non-published release builds: [#&#8203;49564](https://togithub.com/vercel/next.js/issues/49564)
-   Fix unexpected object mutation while resolving Open Graph: [#&#8203;49514](https://togithub.com/vercel/next.js/issues/49514)
-   actions: forward fetch rejections to the action handler: [#&#8203;49577](https://togithub.com/vercel/next.js/issues/49577)
-   actions: make cookies.set revalidate: [#&#8203;49582](https://togithub.com/vercel/next.js/issues/49582)
-   interception route: fix route groups breaking the referrer computation: [#&#8203;49602](https://togithub.com/vercel/next.js/issues/49602)
-   Allow export decl with any init value in the actions compiler: [#&#8203;49600](https://togithub.com/vercel/next.js/issues/49600)
-   Handle unstable_cache in pages: [#&#8203;49624](https://togithub.com/vercel/next.js/issues/49624)
-   Update cache method handling during build: [#&#8203;49633](https://togithub.com/vercel/next.js/issues/49633)
-   Fix fetchCache and no-store handling: [#&#8203;49638](https://togithub.com/vercel/next.js/issues/49638)
-   interception routes: fix rewrites order: [#&#8203;49615](https://togithub.com/vercel/next.js/issues/49615)
-   Ensure initialHeaders are normalized: [#&#8203;49643](https://togithub.com/vercel/next.js/issues/49643)
-   app-router: add support for parallel routes in useParams: [#&#8203;49595](https://togithub.com/vercel/next.js/issues/49595)
-   Add puppeteer to external packages list: [#&#8203;49597](https://togithub.com/vercel/next.js/issues/49597)
-   Add playwright to external package list: [#&#8203;49649](https://togithub.com/vercel/next.js/issues/49649)
-   actions: fill prefetchCache with revalidation payload: [#&#8203;49576](https://togithub.com/vercel/next.js/issues/49576)
-   Rename Turbopack/tasks crates to common prefixes: [#&#8203;49446](https://togithub.com/vercel/next.js/issues/49446)
-   chore(jest): Simplify isServer expression: [#&#8203;48330](https://togithub.com/vercel/next.js/issues/48330)
-   Add missing config vars into Webpack cache key: [#&#8203;49663](https://togithub.com/vercel/next.js/issues/49663)
-   misc: Apply PR comments from [#&#8203;49206](https://togithub.com/vercel/next.js/issues/49206): [#&#8203;49647](https://togithub.com/vercel/next.js/issues/49647)
-   fix: Standalone node http server starts accepting requests before next handler is ready: [#&#8203;49548](https://togithub.com/vercel/next.js/issues/49548)
-   Update links from beta to stable docs.: [#&#8203;49349](https://togithub.com/vercel/next.js/issues/49349)

##### Documentation Changes

-   Fix error message about `preconnect` 📝: [#&#8203;40360](https://togithub.com/vercel/next.js/issues/40360)
-   \[docs] Add iOS hydration mismatch details to error page: [#&#8203;43584](https://togithub.com/vercel/next.js/issues/43584)
-   Add note about custom distDir to standalone build docs: [#&#8203;48592](https://togithub.com/vercel/next.js/issues/48592)
-   Add `--use-yarn` flag to `create-next-app`: [#&#8203;49407](https://togithub.com/vercel/next.js/issues/49407)

##### Misc Changes

-   Add test case for client sourcemaps: [#&#8203;49308](https://togithub.com/vercel/next.js/issues/49308)
-   Update start release workflow inputs: [#&#8203;49492](https://togithub.com/vercel/next.js/issues/49492)
-   Fix failing actions e2e deploy test: [#&#8203;49497](https://togithub.com/vercel/next.js/issues/49497)
-   Replace var with const: [#&#8203;49379](https://togithub.com/vercel/next.js/issues/49379)
-   test: pages react version with react hook in deployment: [#&#8203;48907](https://togithub.com/vercel/next.js/issues/48907)
-   Add test case for [#&#8203;49235](https://togithub.com/vercel/next.js/issues/49235): [#&#8203;49488](https://togithub.com/vercel/next.js/issues/49488)
-   chore: fix flaky middleware matcher test: [#&#8203;49555](https://togithub.com/vercel/next.js/issues/49555)
-   Avoid skipping the required Test Codemods job: [#&#8203;49589](https://togithub.com/vercel/next.js/issues/49589)
-   Update flakey app-actions deploy tests: [#&#8203;49667](https://togithub.com/vercel/next.js/issues/49667)

##### Credits

Huge thanks to [@&#8203;shuding](https://togithub.com/shuding), [@&#8203;ijjk](https://togithub.com/ijjk), [@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony), [@&#8203;timneutkens](https://togithub.com/timneutkens), [@&#8203;huozhi](https://togithub.com/huozhi), [@&#8203;sanjaiyan-dev](https://togithub.com/sanjaiyan-dev), [@&#8203;acdlite](https://togithub.com/acdlite), [@&#8203;feedthejim](https://togithub.com/feedthejim), [@&#8203;styfle](https://togithub.com/styfle), [@&#8203;leerob](https://togithub.com/leerob), [@&#8203;koba04](https://togithub.com/koba04), [@&#8203;g12i](https://togithub.com/g12i), [@&#8203;cesarkohl](https://togithub.com/cesarkohl), [@&#8203;darshkpatel](https://togithub.com/darshkpatel), [@&#8203;josh](https://togithub.com/josh), [@&#8203;li-jia-nan](https://togithub.com/li-jia-nan), [@&#8203;kwonoj](https://togithub.com/kwonoj), [@&#8203;gabschne](https://togithub.com/gabschne), [@&#8203;alexkirsz](https://togithub.com/alexkirsz), [@&#8203;karlhorky](https://togithub.com/karlhorky), [@&#8203;jridgewell](https://togithub.com/jridgewell), [@&#8203;sokra](https://togithub.com/sokra), [@&#8203;kdy1](https://togithub.com/kdy1), [@&#8203;akd-io](https://togithub.com/akd-io), [@&#8203;runjuu](https://togithub.com/runjuu), [@&#8203;jocarrd](https://togithub.com/jocarrd), [@&#8203;nnnnoel](https://togithub.com/nnnnoel), and [@&#8203;ferdingler](https://togithub.com/ferdingler) for helping!

</details>

<details>
<summary>octokit/core.js</summary>

### [`v4.2.1`](https://togithub.com/octokit/core.js/releases/tag/v4.2.1)

[Compare Source](https://togithub.com/octokit/core.js/compare/v4.2.0...v4.2.1)

##### Bug Fixes

-   **build:** replace Pika with esbuild and tsc ([#&#8203;562](https://togithub.com/octokit/core.js/issues/562)) ([5d1c767](https://togithub.com/octokit/core.js/commit/5d1c767e1691dd47dd401349d91b31ca460a3639))

</details>

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

### [`v5.59.6`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/experimental-utils/CHANGELOG.md#&#8203;5596-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5595v5596-2023-05-15)

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

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

</details>

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

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

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

##### Bug Fixes

-   correct escape quotes in contributor names ([#&#8203;351](https://togithub.com/all-contributors/all-contributors-cli/issues/351)) ([959e361](https://togithub.com/all-contributors/all-contributors-cli/commit/959e3613bf57f575514375e26be9856cb51fed02))

</details>

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

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

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

Support ESM and TypeScript config files (by [quesabe](https://togithub.com/quesabe) 🙏)

</details>

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

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

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

-   Update dependencies ([`5e5dbf0`](https://togithub.com/webpro/knip/commit/5e5dbf0))
-   Look for typedoc config in package.json and tsconfig.json (closes [#&#8203;129](https://togithub.com/webpro/knip/issues/129)) ([`66e9840`](https://togithub.com/webpro/knip/commit/66e9840))
-   Require `eslint-config-prettier` if `eslint-plugin-prettier` is in `extends` (fixes [#&#8203;128](https://togithub.com/webpro/knip/issues/128)) ([`3655301`](https://togithub.com/webpro/knip/commit/3655301))
-   Fix re-export edge case ([`ce29c84`](https://togithub.com/webpro/knip/commit/ce29c84))

</details>

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

### [`v0.3.0`](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/blob/HEAD/CHANGELOG.md#&#8203;030---2023-05-15)

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

##### Added

-   Added support for `prettier-plugin-marko` ([#&#8203;151](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/pull/151))
-   Allow sorting of custom attributes, functions, and tagged template literals ([#&#8203;155](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/pull/155))

##### Fixed

-   Speed up formatting ([#&#8203;153](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/pull/153))
-   Fix plugin compatibility when loaded with require ([#&#8203;159](https://togithub.com/tailwindlabs/prettier-plugin-tailwindcss/pull/159))

</details>

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

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

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

-   Fixed: `alpha-value-notation` false negatives for `oklab()`, `oklch()`, and `color()` ([#&#8203;6844](https://togithub.com/stylelint/stylelint/pull/6844)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).
-   Fixed: `declaration-block-no-redundant-longhand-properties` autofix with `cubic-bezier()` ([#&#8203;6841](https://togithub.com/stylelint/stylelint/pull/6841)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).
-   Fixed: `function-no-unknown` false positives for unspaced operators against nested brackets ([#&#8203;6842](https://togithub.com/stylelint/stylelint/pull/6842)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).
-   Fixed: `function-url-quotes` false positives for SCSS `with()` construct ([#&#8203;6847](https://togithub.com/stylelint/stylelint/pull/6847)) ([@&#8203;ybiquitous](https://togithub.com/ybiquitous)).
-   Fixed: `media-feature-name-no-unknown` false positives for `not` and `or` ([#&#8203;6838](https://togithub.com/stylelint/stylelint/pull/6838)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).

</details>

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

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

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



#### What's Changed

##### Changelog

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

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

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

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



#### What's Changed

##### Changelog

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

#### New Contributors

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

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

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

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



#### What's Changed

##### Changelog

-   create-turbo: automatic git configuration. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4941
-   fix: set repoRoot on http cache so cache can be restored by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4956

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

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

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



#### What's Changed

##### Changelog

-   fix: check if user passes absolute path to prune by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4891
-   Submit originatingUser with Run by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4875
-   Use cacheitem to restore HTTP cache. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4634
-   Build turbo once to build JS packages before publishing by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4910
-   fix(cli): example should imply copy by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#4923
-   Remove fallback to configured git user by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4928
-   Partial revert of [#&#8203;4820](https://togithub.com/vercel/turbo/issues/4820). by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4938

#### New Contributors

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

**Full Changelog**: vercel/turbo@v1.9.4...v1.9.5

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

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



#### What's Changed

##### Changelog

-   chore: delete unused npm lockfile impl in go by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4605
-   Env var run summary data generation by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4529
-   Fix path by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4643
-   fix(turborepo): Switching back to git command instead of git2 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4606
-   feat(turbo): add spaces link by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#4632
-   Include logs when posting task summary by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4642
-   Always print the url if we have one by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4660
-   Remove unused import by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4665
-   feat: Add rust implementation of Yarn3+ lockfile by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4589
-   fix(turbo-utils): support old workspace format by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#4682
-   fix: rebuild protobuf code and update ffi callsite by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4685
-   Use spaceID from turbo.json if available by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4687
-   port(turborepo): Config by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4520
-   Existing and error logs behavior by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4656
-   update deps by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#4700
-   chore: move lockfile ffi boundary by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4629
-   Invoke prysk with the directory name to ensure all tests run by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4715
-   Fix errors-only integration test by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4713
-   fix(turborepo): Turbostate deserialization by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4712
-   docs(prisma): add required version field in example by [@&#8203;skauffmann](https://togithub.com/skauffmann) in [vercel/turbo#4676
-   feat: Use Rust Berry lockfile impl by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4684
-   Move `TURBO_FORCE` config env var detection to Rust by [@&#8203;smaeda-ks](https://togithub.com/smaeda-ks) in [vercel/turbo#4590
-   fix: turborepo unused code lints by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4727
-   Delete unused git_go file by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4730
-   We no longer require libc6-compat by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4729
-   Make sure that we only hash the env pairs. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4708
-   Inline a constant so it's individualized to each task run by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4735
-   chore(turborepo): Fixed clippy warnings by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4744
-   chore: Disallows unknown fields in JSON sent by Rust. by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4753
-   fix: allow for workplace descriptors without a protocol by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4755
-   fix: berry prune including all builtin patch descriptors by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4770
-   make RepoConfig and CommandBase use absolute system paths by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#4693
-   chore: remove unused path imports by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4780
-   Send run summary to Spaces even without --summarize flag by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4785
-   port(turborepo): Package Manager Inference by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4655
-   Send turbo version to run payload by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4786
-   Add gitbranch and sha into spaces payload by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4734
-   Stripped down unix path by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4767
-   Remove --serial from the docs. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4813
-   Don't cache test:setup task by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4773
-   Prefactor package hashing by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4816
-   chore: add underlying error to lockfile error messages by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4800
-   Fix basic example to update on dependency changes by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4835
-   fix(examples): with rollup by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#4836
-   fix(docs): internal workspace cache by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#4838
-   Update basic example for App Router. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#4839
-   Update with-rollup with App Router. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#4848
-   Clarify how task skipping works when scripts are not implemented by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4851
-   fix: no longer include peer dependencies in transitive closures by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4824
-   Optional framework inference by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4788
-   Fix/daemon fixups by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#4831
-   Hack to get correct log file by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4873
-   Update with-npm with App Router. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#4845
-   Update with-tailwind with App Router. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#4849
-   Update with-yarn with App Router. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#4850
-   chore: update `update-informer` to 1.0 by [@&#8203;mgrachev](https://togithub.com/mgrachev) in [vercel/turbo#4867
-   fix: sort tasks in run summary output by task id by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4837
-   Drop go implementation of recursive copy by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4874
-   Add a new page for task dependencies by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4852
-   fix(turborepo): Fixed test by killing process when test is done by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4887
-   First pass at file hashing for a package by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4820
-   Remove recursive copy build tags. by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4898
-   feature(turborepo): AbsoluteSystemPath by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#4841
-   feat(turbo): g by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#4896

#### New Contributors

-   [@&#8203;seeplusplus](https://togithub.com/seeplusplus) made their first contribution in [vercel/turbo#4667
-   [@&#8203;skauffmann](https://togithub.com/skauffmann) made their first contribution in [vercel/turbo#4676
-   [@&#8203;smaeda-ks](https://togithub.com/smaeda-ks) made their first contribution in [vercel/turbo#4590
-   [@&#8203;rakesh-blacksof](https://togithub.com/rakesh-blacksof) made their first contribution in [vercel/turbo#4774
-   [@&#8203;ihmpavel](https://togithub.com/ihmpavel) made their first contribution in [vercel/turbo#4743
-   [@&#8203;mgrachev](https://togithub.com/mgrachev) made their first contribution in [vercel/turbo#4867

**Full Changelog**: vercel/turbo@v1.9.3...v1.9.4

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`1.9.3` ->
`1.9.8`](https://renovatebot.com/diffs/npm/turbo/1.9.3/1.9.8) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.9.8/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.9.8/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.9.8/compatibility-slim/1.9.3)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.9.8/confidence-slim/1.9.3)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

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

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

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

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

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

#### What's Changed

##### Changelog

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

#### New Contributors

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

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

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

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

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

#### What's Changed

##### Changelog

- create-turbo: automatic git configuration. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4941
- fix: set repoRoot on http cache so cache can be restored by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4956

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

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

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

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

#### What's Changed

##### Changelog

- fix: check if user passes absolute path to prune by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4891
- Submit originatingUser with Run by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4875
- Use cacheitem to restore HTTP cache. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4634
- Build turbo once to build JS packages before publishing by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4910
- fix(cli): example should imply copy by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4923
- Remove fallback to configured git user by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4928
- Partial revert of
[#&#8203;4820](https://togithub.com/vercel/turbo/issues/4820). by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4938

#### New Contributors

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

**Full Changelog**:
vercel/turbo@v1.9.4...v1.9.5

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

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

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

#### What's Changed

##### Changelog

- chore: delete unused npm lockfile impl in go by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4605
- Env var run summary data generation by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4529
- Fix path by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4643
- fix(turborepo): Switching back to git command instead of git2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4606
- feat(turbo): add spaces link by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4632
- Include logs when posting task summary by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4642
- Always print the url if we have one by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4660
- Remove unused import by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4665
- feat: Add rust implementation of Yarn3+ lockfile by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4589
- fix(turbo-utils): support old workspace format by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4682
- fix: rebuild protobuf code and update ffi callsite by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4685
- Use spaceID from turbo.json if available by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4687
- port(turborepo): Config by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4520
- Existing and error logs behavior by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4656
- update deps by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#4700
- chore: move lockfile ffi boundary by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4629
- Invoke prysk with the directory name to ensure all tests run by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4715
- Fix errors-only integration test by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4713
- fix(turborepo): Turbostate deserialization by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4712
- docs(prisma): add required version field in example by
[@&#8203;skauffmann](https://togithub.com/skauffmann) in
[vercel/turbo#4676
- feat: Use Rust Berry lockfile impl by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4684
- Move `TURBO_FORCE` config env var detection to Rust by
[@&#8203;smaeda-ks](https://togithub.com/smaeda-ks) in
[vercel/turbo#4590
- fix: turborepo unused code lints by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4727
- Delete unused git_go file by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4730
- We no longer require libc6-compat by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4729
- Make sure that we only hash the env pairs. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4708
- Inline a constant so it's individualized to each task run by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4735
- chore(turborepo): Fixed clippy warnings by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4744
- chore: Disallows unknown fields in JSON sent by Rust. by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4753
- fix: allow for workplace descriptors without a protocol by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4755
- fix: berry prune including all builtin patch descriptors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4770
- make RepoConfig and CommandBase use absolute system paths by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#4693
- chore: remove unused path imports by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4780
- Send run summary to Spaces even without --summarize flag by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4785
- port(turborepo): Package Manager Inference by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4655
- Send turbo version to run payload by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4786
- Add gitbranch and sha into spaces payload by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4734
- Stripped down unix path by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4767
- Remove --serial from the docs. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4813
- Don't cache test:setup task by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4773
- Prefactor package hashing by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4816
- chore: add underlying error to lockfile error messages by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4800
- Fix basic example to update on dependency changes by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4835
- fix(examples): with rollup by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4836
- fix(docs): internal workspace cache by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4838
- Update basic example for App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4839
- Update with-rollup with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4848
- Clarify how task skipping works when scripts are not implemented by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4851
- fix: no longer include peer dependencies in transitive closures by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4824
- Optional framework inference by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4788
- Fix/daemon fixups by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#4831
- Hack to get correct log file by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4873
- Update with-npm with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4845
- Update with-tailwind with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4849
- Update with-yarn with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4850
- chore: update `update-informer` to 1.0 by
[@&#8203;mgrachev](https://togithub.com/mgrachev) in
[vercel/turbo#4867
- fix: sort tasks in run summary output by task id by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4837
- Drop go implementation of recursive copy by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4874
- Add a new page for task dependencies by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4852
- fix(turborepo): Fixed test by killing process when test is done by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4887
- First pass at file hashing for a package by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4820
- Remove recursive copy build tags. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4898
- feature(turborepo): AbsoluteSystemPath by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4841
- feat(turbo): g by [@&#8203;tknickman](https://togithub.com/tknickman)
in
[vercel/turbo#4896

#### New Contributors

- [@&#8203;seeplusplus](https://togithub.com/seeplusplus) made their
first contribution in
[vercel/turbo#4667
- [@&#8203;skauffmann](https://togithub.com/skauffmann) made their first
contribution in
[vercel/turbo#4676
- [@&#8203;smaeda-ks](https://togithub.com/smaeda-ks) made their first
contribution in
[vercel/turbo#4590
- [@&#8203;rakesh-blacksof](https://togithub.com/rakesh-blacksof) made
their first contribution in
[vercel/turbo#4774
- [@&#8203;ihmpavel](https://togithub.com/ihmpavel) made their first
contribution in
[vercel/turbo#4743
- [@&#8203;mgrachev](https://togithub.com/mgrachev) made their first
contribution in
[vercel/turbo#4867

**Full Changelog**:
vercel/turbo@v1.9.3...v1.9.4

</details>

---

### Configuration

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

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

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

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

---

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

---

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

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

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

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

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

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

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

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

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

#### What's Changed

##### Changelog

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

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

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

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

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

#### What's Changed

##### Changelog

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

#### New Contributors

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

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

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

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

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

#### What's Changed

##### Changelog

- create-turbo: automatic git configuration. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4941
- fix: set repoRoot on http cache so cache can be restored by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4956

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

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

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

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

#### What's Changed

##### Changelog

- fix: check if user passes absolute path to prune by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4891
- Submit originatingUser with Run by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4875
- Use cacheitem to restore HTTP cache. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4634
- Build turbo once to build JS packages before publishing by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4910
- fix(cli): example should imply copy by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4923
- Remove fallback to configured git user by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4928
- Partial revert of
[#&#8203;4820](https://togithub.com/vercel/turbo/issues/4820). by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4938

#### New Contributors

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

**Full Changelog**:
vercel/turbo@v1.9.4...v1.9.5

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

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

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

#### What's Changed

##### Changelog

- chore: delete unused npm lockfile impl in go by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4605
- Env var run summary data generation by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4529
- Fix path by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4643
- fix(turborepo): Switching back to git command instead of git2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4606
- feat(turbo): add spaces link by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4632
- Include logs when posting task summary by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4642
- Always print the url if we have one by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4660
- Remove unused import by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4665
- feat: Add rust implementation of Yarn3+ lockfile by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4589
- fix(turbo-utils): support old workspace format by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4682
- fix: rebuild protobuf code and update ffi callsite by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4685
- Use spaceID from turbo.json if available by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4687
- port(turborepo): Config by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4520
- Existing and error logs behavior by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4656
- update deps by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#4700
- chore: move lockfile ffi boundary by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4629
- Invoke prysk with the directory name to ensure all tests run by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4715
- Fix errors-only integration test by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4713
- fix(turborepo): Turbostate deserialization by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4712
- docs(prisma): add required version field in example by
[@&#8203;skauffmann](https://togithub.com/skauffmann) in
[vercel/turbo#4676
- feat: Use Rust Berry lockfile impl by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4684
- Move `TURBO_FORCE` config env var detection to Rust by
[@&#8203;smaeda-ks](https://togithub.com/smaeda-ks) in
[vercel/turbo#4590
- fix: turborepo unused code lints by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4727
- Delete unused git_go file by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4730
- We no longer require libc6-compat by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4729
- Make sure that we only hash the env pairs. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4708
- Inline a constant so it's individualized to each task run by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4735
- chore(turborepo): Fixed clippy warnings by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4744
- chore: Disallows unknown fields in JSON sent by Rust. by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4753
- fix: allow for workplace descriptors without a protocol by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4755
- fix: berry prune including all builtin patch descriptors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4770
- make RepoConfig and CommandBase use absolute system paths by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#4693
- chore: remove unused path imports by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4780
- Send run summary to Spaces even without --summarize flag by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4785
- port(turborepo): Package Manager Inference by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4655
- Send turbo version to run payload by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4786
- Add gitbranch and sha into spaces payload by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4734
- Stripped down unix path by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4767
- Remove --serial from the docs. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4813
- Don't cache test:setup task by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4773
- Prefactor package hashing by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4816
- chore: add underlying error to lockfile error messages by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4800
- Fix basic example to update on dependency changes by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4835
- fix(examples): with rollup by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4836
- fix(docs): internal workspace cache by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4838
- Update basic example for App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4839
- Update with-rollup with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4848
- Clarify how task skipping works when scripts are not implemented by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4851
- fix: no longer include peer dependencies in transitive closures by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4824
- Optional framework inference by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4788
- Fix/daemon fixups by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#4831
- Hack to get correct log file by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4873
- Update with-npm with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4845
- Update with-tailwind with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4849
- Update with-yarn with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4850
- chore: update `update-informer` to 1.0 by
[@&#8203;mgrachev](https://togithub.com/mgrachev) in
[vercel/turbo#4867
- fix: sort tasks in run summary output by task id by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4837
- Drop go implementation of recursive copy by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4874
- Add a new page for task dependencies by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4852
- fix(turborepo): Fixed test by killing process when test is done by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4887
- First pass at file hashing for a package by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4820
- Remove recursive copy build tags. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4898
- feature(turborepo): AbsoluteSystemPath by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4841
- feat(turbo): g by [@&#8203;tknickman](https://togithub.com/tknickman)
in
[vercel/turbo#4896

#### New Contributors

- [@&#8203;seeplusplus](https://togithub.com/seeplusplus) made their
first contribution in
[vercel/turbo#4667
- [@&#8203;skauffmann](https://togithub.com/skauffmann) made their first
contribution in
[vercel/turbo#4676
- [@&#8203;smaeda-ks](https://togithub.com/smaeda-ks) made their first
contribution in
[vercel/turbo#4590
- [@&#8203;rakesh-blacksof](https://togithub.com/rakesh-blacksof) made
their first contribution in
[vercel/turbo#4774
- [@&#8203;ihmpavel](https://togithub.com/ihmpavel) made their first
contribution in
[vercel/turbo#4743
- [@&#8203;mgrachev](https://togithub.com/mgrachev) made their first
contribution in
[vercel/turbo#4867

**Full Changelog**:
vercel/turbo@v1.9.3...v1.9.4

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

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

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

#### What's Changed

##### Changelog

- Revert "fix(turborepo): SCM tests and renaming
([#&#8203;4462](https://togithub.com/vercel/turbo/issues/4462))" by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4604

**Full Changelog**:
vercel/turbo@v1.9.2...v1.9.3

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

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

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

#### What's Changed

##### Changelog

- chore: Fix spelling by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4552
- Include TimeSaved metric in Run Summaries by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4539
- docs: add missing comma in `turbo.json` by
[@&#8203;BRKalow](https://togithub.com/BRKalow) in
[vercel/turbo#4557
- Delete a test fixture we don't need by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4558
- fix(create-turbo): correct package manager selection by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4574
- Print Run URL if there is one by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4562
- fix(create-turbo): prompt fix by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4586
- fix: better support for pnpm aliases by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4555
- Make find_up use os.ReadDir by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4599
- fix(turbo-utils): package manager available by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4603

#### New Contributors

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

**Full Changelog**:
vercel/turbo@v1.9.1...v1.9.2

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

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

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

#### What's Changed

##### Changelog

- Add more readme for integration tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4515
- Deprecate `THASH`. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4526
- oldGlobalHash can be named by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4528
- feat(summary): add taskId to single package task by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4530
- Document --summarize flag and include in Troubleshooting doc by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4467
- feat(examples): update READMEs for create-turbo by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4451
- Documentation for Strict Environments by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4490
- chore(turborepo): Make rustls the default feature for turborepo-lib by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4537
- fix(turborepo): SCM tests and renaming by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4462
- Update data sent to vercel for runs by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4495
- Gather Run Summary even when tasks fail by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4524
- Update old testbed make target to fixture- for new fixtures layout by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4538
- Use both key and version when sorting lockfile entries by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4541
- Save task duration correctly by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4540

**Full Changelog**:
vercel/turbo@v1.9.0...v1.9.1

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

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

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

#### What's Changed

##### Changelog

- Log the location of the summary file in the execution summary by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4385
- Remove unused params in real run functions by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4402
- Refactor Dry Run so that output is printed by Run Summaries by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4403
- Make Run Summaries work for Single Package repos by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4387
- Add cache state to task summaries on real runs (2nd try) by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4393
- Remove executionSummary from dry run json by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4394
- chore(deps): update dependency nodemon to v2.0.22 by
[@&#8203;renovate](https://togithub.com/renovate) in
[vercel/turbo#4201
- Account for canary versions in integration test for run summary by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4413
- fix: use signal handler in shim by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4313
- fix: delete libgit2 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4419
- Make --summarize flag to work without a value by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4375
- Enable the summarize flag in help output by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4418
- fix: update example lockfiles by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4321
- feature(turborepo): `-F` as filter shorthand by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4422
- chore: removing signal forwarding test by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4436
- chore(deps): update yarn to v1.22.19 by
[@&#8203;renovate](https://togithub.com/renovate) in
[vercel/turbo#4404
- Polish the shape of the Run Summary JSON by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4421
- Add sub-package info to environment-variables.mdx by
[@&#8203;ozum](https://togithub.com/ozum) in
[vercel/turbo#4406
- feat(create-turbo): support examples by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4398
- Add a debugging section in our docs by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4423
- chore(version): bump canary version by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4453
- fix(lockfile): correct lockfile version by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4461
- fix(deps): update dependency got to v11 \[security] by
[@&#8203;renovate](https://togithub.com/renovate) in
[vercel/turbo#4457
- Fix typos in example tsconfig' readme by
[@&#8203;FranciscoMoretti](https://togithub.com/FranciscoMoretti) in
[vercel/turbo#4486
- chore: pipe through root package json to lockfile parsing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4437
- chore: Remove release flag from turborepo-ffi build by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4478
- Strict Environment Handling by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4449
- chore: update `with-tailwind` example by
[@&#8203;Chia1104](https://togithub.com/Chia1104) in
[vercel/turbo#4379
- ci: Stop building Go code twice by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#4501
- Remove unused constant by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4502
- Improve integration test setup by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4512
- fix(examples): with-rollup by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4514
- Fix Missing packages key when there are no changes in a monorepo by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4518
- fix: use ordered data structure for npm lockfile by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4516

#### New Contributors

- [@&#8203;ozum](https://togithub.com/ozum) made their first
contribution in
[vercel/turbo#4406
- [@&#8203;FranciscoMoretti](https://togithub.com/FranciscoMoretti) made
their first contribution in
[vercel/turbo#4486
- [@&#8203;Chia1104](https://togithub.com/Chia1104) made their first
contribution in
[vercel/turbo#4379
- [@&#8203;cursecodes](https://togithub.com/cursecodes) made their first
contribution in
[vercel/turbo#4427

**Full Changelog**:
vercel/turbo@v1.8.8...v1.9.0

</details>

---

### Configuration

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

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

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

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

---

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

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://app.renovatebot.com/dashboard#github/synopsisgg/bot).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMDIuNCIsInVwZGF0ZWRJblZlciI6IjM1LjEwMi40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

4 participants