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

Add codemod to transform literals to wildcards #5054

Merged
merged 2 commits into from
May 24, 2023

Conversation

nathanhammond
Copy link
Contributor

In 1.10 all existing literal env var names become wildcards. Users with literals env vars that could be confused as wildcards need to be escaped. This automates that process.

@nathanhammond nathanhammond requested review from a team and anthonyshew as code owners May 22, 2023 12:32
@turbo-orchestrator turbo-orchestrator bot added area: docs Improvements or additions to documentation pkg: turbo-codemod team: turborepo labels May 22, 2023
@vercel
Copy link

vercel bot commented May 22, 2023

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

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

@vercel
Copy link

vercel bot commented May 22, 2023

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

A member of the Team first needs to authorize it.

@socket-security

This comment was marked as spam.

Copy link
Contributor

@mehulkar mehulkar left a comment

Choose a reason for hiding this comment

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

lgtm! some suggestions inline, nothing blocking

docs/pages/repo/docs/reference/codemods.mdx Outdated Show resolved Hide resolved
} else {
return -1;
}
});
Copy link
Contributor

Choose a reason for hiding this comment

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

I can never remember what positive and negative means. Is this sorting so more recent transforms run first or vice versa? a comment would be useful if that's why we're sorting in the first place

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 sorts ascending; transforms run from oldest to newest, allowing us to rely on the previous transforms having already been completed.

As for remembering:

  • JS sort is default ascending.
  • 1 > 0, so return 1 when it is greater.
  • 0 = 0, so map 0 to equal.
  • -1 < 0, so -1 maps to smaller.

If you pass negative zero in, well, you get what was coming. (I don't know if JS cares or not.)

Copy link
Member

Choose a reason for hiding this comment

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

😬 good catch!


function migrateTaskConfigs(config: TurboJsonSchema) {
for (const [_, taskDef] of Object.entries(config.pipeline)) {
let { env, passThroughEnv } = taskDef;
Copy link
Contributor

Choose a reason for hiding this comment

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

Could pull this list of known env var fields

for const field of knownEnvFields {
  taskDef[field] = taskDef[field].map(transformEnvVarName)
}

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 a "keep with the pattern" since we do exactly this in four other codemods. 🤷‍♂️

if ("turbo" in packageJSON) {
return runner.abortTransform({
reason:
'"turbo" key detected in package.json. Run `npx @turbo/codemod transform create-turbo-config` first',
Copy link
Contributor

Choose a reason for hiding this comment

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

When can we just stop handling this use case across the board?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Probably now; the transforms weren't sorted previously resulting in this being a requirement to not have everything blow up.

Copy link
Member

Choose a reason for hiding this comment

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

We also still support running these as one offs, so it's possible someone will get the order wrong themselves. So I would still be in favor of keeping this check around for the nice error - but it is definitely a little painful

Copy link
Contributor

Choose a reason for hiding this comment

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

When / under what conditions would you be in favor of removing this handling @tknickman?

Copy link
Member

Choose a reason for hiding this comment

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

Since the purpose of these codemods are intended for migration, I think we should leave them in.

I think these have a different contract than the core CLI, where it's totally fine to remove the features / logs / checks etc. after deprecation.

Copy link
Contributor

Choose a reason for hiding this comment

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

For all new codemods going forward too?

@@ -270,3 +270,4 @@ export type OutputMode =
| "none";

export type AnchoredUnixPath = string;
export type EnvWildcard = string;
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 get documented somehow?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

I've got that over in the wildcard PR; I did this to minimize conflicts. This ends up documented in the schema, but never gets presented to the user in VS Code. 😕

} else {
return -1;
}
});
Copy link
Member

Choose a reason for hiding this comment

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

😬 good catch!

if ("turbo" in packageJSON) {
return runner.abortTransform({
reason:
'"turbo" key detected in package.json. Run `npx @turbo/codemod transform create-turbo-config` first',
Copy link
Member

Choose a reason for hiding this comment

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

We also still support running these as one offs, so it's possible someone will get the order wrong themselves. So I would still be in favor of keeping this check around for the nice error - but it is definitely a little painful

@nathanhammond nathanhammond added the pr: automerge Kodiak will merge these automatically after checks pass label May 24, 2023
@kodiakhq kodiakhq bot merged commit f717cc6 into vercel:main May 24, 2023
41 checks passed
@nathanhammond nathanhammond deleted the wildcard-codemod branch May 24, 2023 10:21
renovate bot added a commit to Asjas/platform that referenced this pull request May 30, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

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

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

- Exclude Pipeline Definition from Global Hash by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4545
- chore(turbo/gen): mark as experimental by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5016
- fix: no longer crash for single projects with global dependencies by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5002
- Add `dotEnv` to `turbo.json` by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4870
- Add missing `--copy` flag. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5021
- feat(basic): add generators to basic example by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5006
- feat(prune) allow pruning of projects using Yarn PnP by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5019
- Update skipping-tasks.mdx by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5039
- Update skipping-tasks.mdx by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5041
- feat(turborepo): remove RelativeSystemPathBuf, clean paths on join by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5020
- fix(create-turbo): default example messaging by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5059
- fix(daemon): kill daemon when root is removed by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5038
- ci(turbo): allow publishing from non-main by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5062
- refactor(turborepo): Consolidated PathError and PathValidationError by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5060
- fix(create-turbo): git init must use add by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5058
- feat: go daemon opt-in feature flag by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5076
- Add codemod to transform literals to wildcards by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5054
- Wildcard env by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5017
- fix(daemon): plumb through flush watch errors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5070
- Improve error message when repo is not linked or token is expired by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5089
- fix(turborepo):Support distinguishing unset env vars by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5086

#### New Contributors

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

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

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

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@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.341.0` -> `3.342.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-cognito-identity-provider/3.341.0/3.342.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.342.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.342.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.342.0/compatibility-slim/3.341.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.342.0/confidence-slim/3.341.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.341.0` -> `3.342.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.341.0/3.342.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.342.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.342.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.342.0/compatibility-slim/3.341.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.342.0/confidence-slim/3.341.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@aws-sdk/signature-v4](https://togithub.com/aws/aws-sdk-js-v3/tree/main/packages/signature-v4) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | [`3.341.0` -> `3.342.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fsignature-v4/3.341.0/3.342.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fsignature-v4/3.342.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fsignature-v4/3.342.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fsignature-v4/3.342.0/compatibility-slim/3.341.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fsignature-v4/3.342.0/confidence-slim/3.341.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@prisma/client](https://www.prisma.io) ([source](https://togithub.com/prisma/prisma)) | [`4.14.1` -> `4.15.0`](https://renovatebot.com/diffs/npm/@prisma%2fclient/4.14.1/4.15.0) | [![age](https://badges.renovateapi.com/packages/npm/@prisma%2fclient/4.15.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@prisma%2fclient/4.15.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@prisma%2fclient/4.15.0/compatibility-slim/4.14.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@prisma%2fclient/4.15.0/confidence-slim/4.14.1)](https://docs.renovatebot.com/merge-confidence/) |
| [@prisma/instrumentation](https://www.prisma.io) ([source](https://togithub.com/prisma/prisma)) | [`4.14.1` -> `4.15.0`](https://renovatebot.com/diffs/npm/@prisma%2finstrumentation/4.14.1/4.15.0) | [![age](https://badges.renovateapi.com/packages/npm/@prisma%2finstrumentation/4.15.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@prisma%2finstrumentation/4.15.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@prisma%2finstrumentation/4.15.0/compatibility-slim/4.14.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@prisma%2finstrumentation/4.15.0/confidence-slim/4.14.1)](https://docs.renovatebot.com/merge-confidence/) |
| @&#8203;prisma/nextjs-monorepo-workaround-plugin | [`4.14.1` -> `4.15.0`](https://renovatebot.com/diffs/npm/@prisma%2fnextjs-monorepo-workaround-plugin/4.14.1/4.15.0) | [![age](https://badges.renovateapi.com/packages/npm/@prisma%2fnextjs-monorepo-workaround-plugin/4.15.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@prisma%2fnextjs-monorepo-workaround-plugin/4.15.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@prisma%2fnextjs-monorepo-workaround-plugin/4.15.0/compatibility-slim/4.14.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@prisma%2fnextjs-monorepo-workaround-plugin/4.15.0/confidence-slim/4.14.1)](https://docs.renovatebot.com/merge-confidence/) |
| [chromatic](https://www.chromatic.com) ([source](https://togithub.com/chromaui/chromatic-cli)) | [`6.17.4` -> `6.18.0`](https://renovatebot.com/diffs/npm/chromatic/6.17.4/6.18.0) | [![age](https://badges.renovateapi.com/packages/npm/chromatic/6.18.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/chromatic/6.18.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/chromatic/6.18.0/compatibility-slim/6.17.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/chromatic/6.18.0/confidence-slim/6.17.4)](https://docs.renovatebot.com/merge-confidence/) |
| [dotenv](https://togithub.com/motdotla/dotenv) | [`16.0.3` -> `16.1.0`](https://renovatebot.com/diffs/npm/dotenv/16.0.3/16.1.0) | [![age](https://badges.renovateapi.com/packages/npm/dotenv/16.1.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/dotenv/16.1.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/dotenv/16.1.0/compatibility-slim/16.0.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/dotenv/16.1.0/confidence-slim/16.0.3)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-plugin-turbo](https://togithub.com/vercel/turbo) | [`1.9.9` -> `1.10.0`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/1.9.9/1.10.0) | [![age](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.0/compatibility-slim/1.9.9)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.0/confidence-slim/1.9.9)](https://docs.renovatebot.com/merge-confidence/) |
| [prisma](https://www.prisma.io) ([source](https://togithub.com/prisma/prisma)) | [`4.14.1` -> `4.15.0`](https://renovatebot.com/diffs/npm/prisma/4.14.1/4.15.0) | [![age](https://badges.renovateapi.com/packages/npm/prisma/4.15.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/prisma/4.15.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/prisma/4.15.0/compatibility-slim/4.14.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/prisma/4.15.0/confidence-slim/4.14.1)](https://docs.renovatebot.com/merge-confidence/) |
| [prisma-kysely](https://togithub.com/valtyr/prisma-kysely) | [`1.4.1` -> `1.4.2`](https://renovatebot.com/diffs/npm/prisma-kysely/1.4.1/1.4.2) | [![age](https://badges.renovateapi.com/packages/npm/prisma-kysely/1.4.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/prisma-kysely/1.4.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/prisma-kysely/1.4.2/compatibility-slim/1.4.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/prisma-kysely/1.4.2/confidence-slim/1.4.1)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.9.9` -> `1.10.0`](https://renovatebot.com/diffs/npm/turbo/1.9.9/1.10.0) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.0/compatibility-slim/1.9.9)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.0/confidence-slim/1.9.9)](https://docs.renovatebot.com/merge-confidence/) |
| [type-fest](https://togithub.com/sindresorhus/type-fest) | [`3.11.0` -> `3.11.1`](https://renovatebot.com/diffs/npm/type-fest/3.11.0/3.11.1) | [![age](https://badges.renovateapi.com/packages/npm/type-fest/3.11.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/type-fest/3.11.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/type-fest/3.11.1/compatibility-slim/3.11.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/type-fest/3.11.1/confidence-slim/3.11.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.342.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-cognito-identity-provider/CHANGELOG.md#&#8203;33420-httpsgithubcomawsaws-sdk-js-v3comparev33410v33420-2023-05-30)

[Compare Source](https://togithub.com/aws/aws-sdk-js-v3/compare/v3.341.0...v3.342.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.342.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#&#8203;33420-httpsgithubcomawsaws-sdk-js-v3comparev33410v33420-2023-05-30)

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

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

</details>

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

### [`v3.342.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/packages/signature-v4/CHANGELOG.md#&#8203;33420-httpsgithubcomawsaws-sdk-js-v3comparev33410v33420-2023-05-30)

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

##### Features

-   **event-stream:** implement event stream sra ([#&#8203;4695](https://togithub.com/aws/aws-sdk-js-v3/issues/4695)) ([9ba012d](https://togithub.com/aws/aws-sdk-js-v3/commit/9ba012dfa3a3429aa2db0f90b3b0b3a7a31f9bc3))

</details>

<details>
<summary>prisma/prisma</summary>

### [`v4.15.0`](https://togithub.com/prisma/prisma/releases/tag/4.15.0)

[Compare Source](https://togithub.com/prisma/prisma/compare/4.14.1...4.15.0)

🌟 **Help us spread the word about Prisma by starring the repo or [tweeting](https://twitter.com/intent/tweet?text=Check%20out%20the%20latest%20@&#8203;prisma%20release%20v4.15.0%20%F0%9F%9A%80%0D%0A%0D%0Ahttps://github.com/prisma/prisma/releases/tag/4.15.0) about the release.** 🌟

### Highlights

For this release, we focused on fixing bugs and making smaller quality-of-life improvements.

#### Support for custom arguments for `prisma db seed`

This release adds support for defining and passing arbitrary arguments to `prisma db seed`. This creates the opportunity for you to define your own arguments in your seed file that you could pass to the `prisma db seed command`. A few example use-cases include, but are not limited to:

-   Seeding different data in different environments
-   Partially seeding data in some tables

Here is an example `seed.ts` file that defines custom arguments for seeding different data in different environments:

```tsx
// prisma/seed.ts
import { parseArgs } from "node:util";

const options = {
  environment: { type: 'string', },
}

async function main() {
  const { values: { environment } } = parseArgs({ options })
  
  switch (environment) {
    case "development":
      /** do something for development */
      break;
    case "test":
      /** do something  for test  environment */
      break;
    default:
      break;
  }
}

main()
```

You can then provide the `environment` argument when executing the seed script as follows:

```bash
npx prisma db seed -- --environment development
```

Let us know what you think, share example usage of this feature, and create a [bug report](https://togithub.com/prisma/prisma/issues/new?assignees=\&labels=kind/bug\&projects=\&template=bug_report.yml) if you run into any issues.

#### Improved error messages when Query Engine file is not found

This release improves the error messages returned by Prisma Client when the Query Engine file is not found. A few reasons the query engine file might be missing from your application bundle include when:

-   The downloaded Query Engine doesn’t match the runtime / target platform your application is running on.
-   The Query Engine is not copied to your final application bundle during the build step.

We hope these error messages are helpful while debugging your application.

#### Prisma VS Code extension improvements

In this release, we made a few improvements to our [VS Code extension](https://marketplace.visualstudio.com/items?itemName=Prisma.prisma):

1.  Updated the file system watcher that is responsible for restarting the TypeScript server when `prisma generate` is run to ensure the types are in sync

    > **Note**:
    >
    > -   This new approach is currently only available on Windows and Linux. We plan on adding support for the new file system watcher on macOS soon.
    > -   This requires both Prisma CLI & VS code extension version `4.15.0` or higher

2.  Added [Quick Fixes action](https://code.visualstudio.com/docs/editor/refactoring#\_code-actions-quick-fixes-and-refactorings) for unique identifiers for MongoDB to add the `@map("_id")` attribute function when it’s missing on an identifier field

    https://user-images.githubusercontent.com/29753584/239030357-2b6613bf-b6b5-48f2-a2df-b93df0692fda.mov

3.  Support for [renaming symbols](https://code.visualstudio.com/docs/editor/refactoring#\_rename-symbol) for composite types and views

    https://user-images.githubusercontent.com/33921841/242042225-87dfee9b-0698-4e1d-b05e-5cb0b8ab1349.mov

#### Fixes and improvements

##### Prisma Client

-   [Prisma generate - `Error: write EPIPE` on WSL <-> Windows](https://togithub.com/prisma/prisma/issues/3294)
-   [`prisma generate` is blocked by `query-engine-rhel-openssl-1.0.x` opening in Notepad on Windows](https://togithub.com/prisma/prisma/issues/4308)
-   [Generated client output path hardcoded to build environment](https://togithub.com/prisma/prisma/issues/7228)
-   [Issue with Yarn Workspace Monorepo: Query engine binary for current platform could not be found.](https://togithub.com/prisma/prisma/issues/7311)
-   [Cloning a project with checked in `node_modules` (from another platform) leads to platform engine not being present](https://togithub.com/prisma/prisma/issues/7848)
-   [SvelteKit, Vite and Prisma "module not defined"](https://togithub.com/prisma/prisma/issues/10404)
-   [Schema File Not Found in non monorepo with custom `output`](https://togithub.com/prisma/prisma/issues/10433)
-   [Deploying to Cloudflare Workers | "PrismaClient is unable to be run in the browser"](https://togithub.com/prisma/prisma/issues/12981)
-   [Inline/bundle the contents of the prisma schema on generate](https://togithub.com/prisma/prisma/issues/13052)
-   [Netlify: `Query engine library for current platform "rhel-openssl-1.0.x" could not be found. You incorrectly pinned it to rhel-openssl-1.0.x`](https://togithub.com/prisma/prisma/issues/13266)
-   [Query Engine Library Not Found](https://togithub.com/prisma/prisma/issues/13396)
-   [No client schema when using PrismaClient during cached (standard) Netlify build](https://togithub.com/prisma/prisma/issues/13475)
-   [Module "@&#8203;prisma/client" has no exported member "PrismaClient"](https://togithub.com/prisma/prisma/issues/13946)
-   [EPERM: operation not permitted](https://togithub.com/prisma/prisma/issues/14626)
-   [prisma/client crashes when used with older versions of react-refresh](https://togithub.com/prisma/prisma/issues/14953)
-   [Unable to run prisma cli in pnpm monorepo from workspace install](https://togithub.com/prisma/prisma/issues/15081)
-   [Misleading error message when the query engine is not found](https://togithub.com/prisma/prisma/issues/15292)
-   [When setting custom client output directory, generated package.json does not include "sideEffects: false"](https://togithub.com/prisma/prisma/issues/15301)
-   [ You already added the platform "debian-openssl-1.1.x" to the "generator" block in the "schema.prisma" file as described in https://pris.ly/d/client-generator, but something went wrong. ](https://togithub.com/prisma/prisma/issues/15631)
-   [Prisma seems to be looking in the wrong location for rhel-openssl-1.0.x](https://togithub.com/prisma/prisma/issues/15638)
-   [Can't find prisma engine](https://togithub.com/prisma/prisma/issues/16872)
-   [`Cannot find name '$PrismaModel'` due to feature `extendedWhereUnique` with preview feature `fieldReference`](https://togithub.com/prisma/prisma/issues/16997)
-   [Netlify build fails with PrismaClientInitializationError](https://togithub.com/prisma/prisma/issues/17167)
-   [i'm getting the error while requesting the api ](https://togithub.com/prisma/prisma/issues/17906)
-   [Query engine library for current platform could not be found.](https://togithub.com/prisma/prisma/issues/17996)
-   [Prisma unable to reconnect if initial connection fails](https://togithub.com/prisma/prisma/issues/18071)
-   [GraphQL protocol encoder incorrectly turns empty array into empty object.](https://togithub.com/prisma/prisma/issues/18846)
-   [GraphQL protocol: Invalid `Date` values silently turn into `nulls`](https://togithub.com/prisma/prisma/issues/18970)
-   [@&#8203;prisma/client/edge + Cloudflare Worker / wrangler = Could not resolve "os"](https://togithub.com/prisma/prisma/issues/19174)
-   [Client is bricked from connecting to DB if first attempt fails.](https://togithub.com/prisma/prisma/issues/19182)
-   [JSON protocol: incorrect recursive composites detection through multiple nesting levels](https://togithub.com/prisma/prisma/issues/19373)
-   [`fieldReference` is not working with enums](https://togithub.com/prisma/prisma/issues/19449)

##### Prisma Migrate

-   [Pass extra arguments to `prisma db seed` to the seed command](https://togithub.com/prisma/prisma/issues/9403)
-   [Typo in generating migration SQL to add enum.](https://togithub.com/prisma/prisma/issues/19352)

##### Language tools (e.g. VS Code)

-   [MongoDB: Quick fix for missing `@map("_id")` annotation](https://togithub.com/prisma/language-tools/issues/762)
-   [Rename composite types](https://togithub.com/prisma/language-tools/issues/1135)
-   [Views: Support for rename](https://togithub.com/prisma/language-tools/issues/1365)
-   [TextDocument deprecation](https://togithub.com/prisma/language-tools/issues/1421)
-   [Lib name change vsce -> @&#8203;vscode/vsce](https://togithub.com/prisma/language-tools/issues/1425)

#### Credits

Huge thanks to [@&#8203;RobertCraigie](https://togithub.com/RobertCraigie), [@&#8203;KhooHaoYit](https://togithub.com/KhooHaoYit), [@&#8203;art049](https://togithub.com/art049), [@&#8203;luxaritas](https://togithub.com/luxaritas), [@&#8203;mrazauskas](https://togithub.com/mrazauskas), [@&#8203;maxmartynov](https://togithub.com/maxmartynov), [@&#8203;haneenmahd](https://togithub.com/haneenmahd) for helping!

#### 📺 Join us for another "What's new in Prisma" live stream

Learn about the latest release and other news from the Prisma community by joining us for another ["What's new in Prisma"](https://youtube.com/playlist?list=PLn2e1F9Rfr6l1B9RP0A9NdX7i7QIWfBa7) live stream.

The stream takes place [on YouTube](https://youtu.be/t7jsqf0DeNc) on **Thursday, June 1** at **5 pm Berlin | 8 am San Francisco**.

</details>

<details>
<summary>chromaui/chromatic-cli</summary>

### [`v6.18.0`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#&#8203;6180---2023-05-03)

[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v6.17.4...v6.18.0)

-   [737](https://togithub.com/chromaui/chromatic-cli/pull/737) Better discovery for TurboSnap trace-changed and related directories
-   [747](https://togithub.com/chromaui/chromatic-cli/pull/747) Fix Storybook config detection by adding serverRequire to interpret files

</details>

<details>
<summary>motdotla/dotenv</summary>

### [`v16.1.0`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#&#8203;1610-httpsgithubcommotdotladotenvcomparev1603v1610-2023-05-30)

[Compare Source](https://togithub.com/motdotla/dotenv/compare/v16.0.3...v16.1.0)

##### Added

-   Add `populate` convenience method [#&#8203;733](https://togithub.com/motdotla/dotenv/pull/733)
-   Accept URL as path option [#&#8203;720](https://togithub.com/motdotla/dotenv/pull/720)
-   Add dotenv to `npm fund` command
-   Spanish language README [#&#8203;698](https://togithub.com/motdotla/dotenv/pull/698)
-   Add `.env.vault` support. 🎉 ([#&#8203;730](https://togithub.com/motdotla/dotenv/pull/730))

ℹ️ `.env.vault` extends the `.env` file format standard with a localized encrypted vault file. Package it securely with your production code deploys. It's cloud agnostic so that you can deploy your secrets anywhere – without [risky third-party integrations](https://techcrunch.com/2023/01/05/circleci-breach/). [read more](https://togithub.com/motdotla/dotenv#-deploying)

##### Changed

-   Fixed "cannot resolve 'fs'" error on tools like Replit [#&#8203;693](https://togithub.com/motdotla/dotenv/pull/693)

</details>

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

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

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



#### What's Changed

##### Changelog

-   Exclude Pipeline Definition from Global Hash by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4545
-   chore(turbo/gen): mark as experimental by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5016
-   fix: no longer crash for single projects with global dependencies by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5002
-   Add `dotEnv` to `turbo.json` by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4870
-   Add missing `--copy` flag. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5021
-   feat(basic): add generators to basic example by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5006
-   feat(prune) allow pruning of projects using Yarn PnP  by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5019
-   Update skipping-tasks.mdx by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5039
-   Update skipping-tasks.mdx by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5041
-   feat(turborepo): remove RelativeSystemPathBuf, clean paths on join by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5020
-   fix(create-turbo): default example messaging by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5059
-   fix(daemon): kill daemon when root is removed by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5038
-   ci(turbo): allow publishing from non-main by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5062
-   refactor(turborepo): Consolidated PathError and PathValidationError by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5060
-   fix(create-turbo): git init must use add by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5058
-   feat: go daemon opt-in feature flag by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#5076
-   Add codemod to transform literals to wildcards by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5054
-   Wildcard env by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5017
-   fix(daemon): plumb through flush watch errors by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5070
-   Improve error message when repo is not linked or token is expired by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5089
-   fix(turborepo):Support distinguishing unset env vars by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5086

#### New Contributors

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

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

</details>

<details>
<summary>valtyr/prisma-kysely</summary>

### [`v1.4.2`](https://togithub.com/valtyr/prisma-kysely/blob/HEAD/CHANGELOG.md#&#8203;142)

[Compare Source](https://togithub.com/valtyr/prisma-kysely/compare/v1.4.1...v1.4.2)

##### Patch Changes

-   [`744b666`](https://togithub.com/valtyr/prisma-kysely/commit/744b666): Uses the value of fileName when no enumFileName provided. Previously now if you used a different fileName and you didn't provide enumFileName it put the database in the fileName and enums in types.ts.

    Now imports GeneratedAlways only when needed. Previously it was always added, even if not needed which caused problems with the linter.

</details>

<details>
<summary>sindresorhus/type-fest</summary>

### [`v3.11.1`](https://togithub.com/sindresorhus/type-fest/releases/tag/v3.11.1)

[Compare Source](https://togithub.com/sindresorhus/type-fest/compare/v3.11.0...v3.11.1)

-   `PackageJson`: Fix undefined being allowed in exports ([#&#8203;626](https://togithub.com/sindresorhus/type-fest/issues/626))  [`dc38b70`](https://togithub.com/sindresorhus/type-fest/commit/dc38b70)
-   `SetRequired`: Fix performance regression ([#&#8203;628](https://togithub.com/sindresorhus/type-fest/issues/628))  [`6a82900`](https://togithub.com/sindresorhus/type-fest/commit/6a82900)

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

This PR contains the following updates:

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

---

### Release Notes

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

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

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



**Full Changelog**: vercel/turbo@v1.10.0...v1.10.1

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

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



#### What's Changed

##### Changelog

-   Exclude Pipeline Definition from Global Hash by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4545
-   chore(turbo/gen): mark as experimental by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5016
-   fix: no longer crash for single projects with global dependencies by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5002
-   Add `dotEnv` to `turbo.json` by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4870
-   Add missing `--copy` flag. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5021
-   feat(basic): add generators to basic example by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5006
-   feat(prune) allow pruning of projects using Yarn PnP  by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5019
-   Update skipping-tasks.mdx by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5039
-   Update skipping-tasks.mdx by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5041
-   feat(turborepo): remove RelativeSystemPathBuf, clean paths on join by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5020
-   fix(create-turbo): default example messaging by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5059
-   fix(daemon): kill daemon when root is removed by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5038
-   ci(turbo): allow publishing from non-main by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5062
-   refactor(turborepo): Consolidated PathError and PathValidationError by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5060
-   fix(create-turbo): git init must use add by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5058
-   feat: go daemon opt-in feature flag by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#5076
-   Add codemod to transform literals to wildcards by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5054
-   Wildcard env by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5017
-   fix(daemon): plumb through flush watch errors by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5070
-   Improve error message when repo is not linked or token is expired by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5089
-   fix(turborepo):Support distinguishing unset env vars by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5086

#### New Contributors

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

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

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

This PR contains the following updates:

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

---

### Release Notes

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

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

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

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

**Full Changelog**:
vercel/turbo@v1.10.0...v1.10.1

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

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

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

#### What's Changed

##### Changelog

- Exclude Pipeline Definition from Global Hash by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4545
- chore(turbo/gen): mark as experimental by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5016
- fix: no longer crash for single projects with global dependencies by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5002
- Add `dotEnv` to `turbo.json` by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4870
- Add missing `--copy` flag. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5021
- feat(basic): add generators to basic example by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5006
- feat(prune) allow pruning of projects using Yarn PnP by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5019
- Update skipping-tasks.mdx by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5039
- Update skipping-tasks.mdx by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5041
- feat(turborepo): remove RelativeSystemPathBuf, clean paths on join by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5020
- fix(create-turbo): default example messaging by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5059
- fix(daemon): kill daemon when root is removed by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5038
- ci(turbo): allow publishing from non-main by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5062
- refactor(turborepo): Consolidated PathError and PathValidationError by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5060
- fix(create-turbo): git init must use add by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5058
- feat: go daemon opt-in feature flag by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5076
- Add codemod to transform literals to wildcards by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5054
- Wildcard env by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5017
- fix(daemon): plumb through flush watch errors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5070
- Improve error message when repo is not linked or token is expired by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5089
- fix(turborepo):Support distinguishing unset env vars by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5086

#### New Contributors

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

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

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

</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:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMDIuMCIsInVwZGF0ZWRJblZlciI6IjM1LjExMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@commitlint/cli](https://commitlint.js.org/) ([source](https://togithub.com/conventional-changelog/commitlint)) | [`^17.6.3` -> `^17.6.5`](https://renovatebot.com/diffs/npm/@commitlint%2fcli/17.6.3/17.6.5) | [![age](https://badges.renovateapi.com/packages/npm/@commitlint%2fcli/17.6.5/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@commitlint%2fcli/17.6.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@commitlint%2fcli/17.6.5/compatibility-slim/17.6.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@commitlint%2fcli/17.6.5/confidence-slim/17.6.3)](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.14` -> `^18.16.16`](https://renovatebot.com/diffs/npm/@types%2fnode/18.16.16/18.16.16) | [![age](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.16/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.16/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.16/compatibility-slim/18.16.16)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.16/confidence-slim/18.16.16)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/prettier](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/prettier) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`^2.7.2` -> `^2.7.3`](https://renovatebot.com/diffs/npm/@types%2fprettier/2.7.2/2.7.3) | [![age](https://badges.renovateapi.com/packages/npm/@types%2fprettier/2.7.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2fprettier/2.7.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2fprettier/2.7.3/compatibility-slim/2.7.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2fprettier/2.7.3/confidence-slim/2.7.2)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint) | [`^5.59.7` -> `^5.59.8`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/5.59.7/5.59.8) | [![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.59.8/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.59.8/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.59.8/compatibility-slim/5.59.7)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.59.8/confidence-slim/5.59.7)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint) | [`^5.59.7` -> `^5.59.8`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/5.59.7/5.59.8) | [![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.59.8/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.59.8/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.59.8/compatibility-slim/5.59.7)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.59.8/confidence-slim/5.59.7)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`^1.9.9` -> `^1.10.1`](https://renovatebot.com/diffs/npm/turbo/1.9.9/1.10.1) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.1/compatibility-slim/1.9.9)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.1/confidence-slim/1.9.9)](https://docs.renovatebot.com/merge-confidence/) |
| [typescript](https://www.typescriptlang.org/) ([source](https://togithub.com/Microsoft/TypeScript)) | [`^5.0.4` -> `^5.1.3`](https://renovatebot.com/diffs/npm/typescript/5.0.4/5.1.3) | [![age](https://badges.renovateapi.com/packages/npm/typescript/5.1.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/typescript/5.1.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/typescript/5.1.3/compatibility-slim/5.0.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/typescript/5.1.3/confidence-slim/5.0.4)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>conventional-changelog/commitlint</summary>

### [`v17.6.5`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/cli/CHANGELOG.md#&#8203;1765-httpsgithubcomconventional-changelogcommitlintcomparev1764v1765-2023-05-30)

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

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

</details>

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

### [`v5.59.8`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#&#8203;5598-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5597v5598-2023-05-29)

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

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

</details>

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

### [`v5.59.8`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#&#8203;5598-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5597v5598-2023-05-29)

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

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

</details>

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

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

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



**Full Changelog**: vercel/turbo@v1.10.0...v1.10.1

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

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



#### What's Changed

##### Changelog

-   Exclude Pipeline Definition from Global Hash by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4545
-   chore(turbo/gen): mark as experimental by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5016
-   fix: no longer crash for single projects with global dependencies by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5002
-   Add `dotEnv` to `turbo.json` by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#4870
-   Add missing `--copy` flag. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5021
-   feat(basic): add generators to basic example by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5006
-   feat(prune) allow pruning of projects using Yarn PnP  by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5019
-   Update skipping-tasks.mdx by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5039
-   Update skipping-tasks.mdx by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5041
-   feat(turborepo): remove RelativeSystemPathBuf, clean paths on join by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5020
-   fix(create-turbo): default example messaging by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5059
-   fix(daemon): kill daemon when root is removed by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5038
-   ci(turbo): allow publishing from non-main by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5062
-   refactor(turborepo): Consolidated PathError and PathValidationError by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5060
-   fix(create-turbo): git init must use add by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5058
-   feat: go daemon opt-in feature flag by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#5076
-   Add codemod to transform literals to wildcards by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5054
-   Wildcard env by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5017
-   fix(daemon): plumb through flush watch errors by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5070
-   Improve error message when repo is not linked or token is expired by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5089
-   fix(turborepo):Support distinguishing unset env vars by [@&#8203;nathanhammond](https://togithub.com/nathanhammond) in [vercel/turbo#5086

#### New Contributors

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

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

</details>

<details>
<summary>Microsoft/TypeScript</summary>

### [`v5.1.3`](https://togithub.com/microsoft/TypeScript/releases/tag/v5.1.3): TypeScript 5.1.3

[Compare Source](https://togithub.com/Microsoft/TypeScript/compare/v5.0.4...v5.1.3)

For release notes, check out the [release announcement](https://devblogs.microsoft.com/typescript/announcing-typescript-5-1/).

For the complete list of fixed issues, check out the

-   [fixed issues query for Typescript 5.1.0 (Beta)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.1.0%22+is%3Aclosed+).
-   [fixed issues query for Typescript 5.1.1 (RC)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.1.1%22+is%3Aclosed+).
-   [fixed issues query for Typescript 5.1.3 (Stable)](https://togithub.com/Microsoft/TypeScript/issues?utf8=%E2%9C%93\&q=milestone%3A%22TypeScript+5.1.3%22+is%3Aclosed+).

Downloads are available on:

-   [NuGet package](https://www.nuget.org/packages/Microsoft.TypeScript.MSBuild)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Wednesday" in timezone Europe/Berlin, 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.

👻 **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/mheob/config).



Co-authored-by: Alex Böhm <3983539+mheob@users.noreply.github.com>
fuxingloh pushed a commit to fuxingloh/contented that referenced this pull request Jun 9, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

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

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

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

#### New Contributors

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

**Full Changelog**:
vercel/turbo@v1.10.1...v1.10.2

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

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

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

**Full Changelog**:
vercel/turbo@v1.10.0...v1.10.1

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

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

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

#### What's Changed

##### Changelog

- Exclude Pipeline Definition from Global Hash by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4545
- chore(turbo/gen): mark as experimental by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5016
- fix: no longer crash for single projects with global dependencies by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5002
- Add `dotEnv` to `turbo.json` by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4870
- Add missing `--copy` flag. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5021
- feat(basic): add generators to basic example by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5006
- feat(prune) allow pruning of projects using Yarn PnP by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5019
- Update skipping-tasks.mdx by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5039
- Update skipping-tasks.mdx by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5041
- feat(turborepo): remove RelativeSystemPathBuf, clean paths on join by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5020
- fix(create-turbo): default example messaging by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5059
- fix(daemon): kill daemon when root is removed by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5038
- ci(turbo): allow publishing from non-main by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5062
- refactor(turborepo): Consolidated PathError and PathValidationError by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5060
- fix(create-turbo): git init must use add by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5058
- feat: go daemon opt-in feature flag by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5076
- Add codemod to transform literals to wildcards by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5054
- Wildcard env by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5017
- fix(daemon): plumb through flush watch errors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5070
- Improve error message when repo is not linked or token is expired by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5089
- fix(turborepo):Support distinguishing unset env vars by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5086

#### New Contributors

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

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

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

</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:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMDIuMCIsInVwZGF0ZWRJblZlciI6IjM1LjExMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fwouts pushed a commit to fwouts/previewjs that referenced this pull request Jun 11, 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.9` ->
`^1.10.3`](https://renovatebot.com/diffs/npm/turbo/1.9.9/1.10.3) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.3/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.3/compatibility-slim/1.9.9)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.3/confidence-slim/1.9.9)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

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

**Full Changelog**:
vercel/turbo@v1.10.2...v1.10.3

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

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

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

#### What's Changed

##### Changelog

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

#### New Contributors

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

**Full Changelog**:
vercel/turbo@v1.10.1...v1.10.2

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

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

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

**Full Changelog**:
vercel/turbo@v1.10.0...v1.10.1

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

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

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

#### What's Changed

##### Changelog

- Exclude Pipeline Definition from Global Hash by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4545
- chore(turbo/gen): mark as experimental by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5016
- fix: no longer crash for single projects with global dependencies by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5002
- Add `dotEnv` to `turbo.json` by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4870
- Add missing `--copy` flag. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5021
- feat(basic): add generators to basic example by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5006
- feat(prune) allow pruning of projects using Yarn PnP by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5019
- Update skipping-tasks.mdx by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5039
- Update skipping-tasks.mdx by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5041
- feat(turborepo): remove RelativeSystemPathBuf, clean paths on join by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5020
- fix(create-turbo): default example messaging by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5059
- fix(daemon): kill daemon when root is removed by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5038
- ci(turbo): allow publishing from non-main by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5062
- refactor(turborepo): Consolidated PathError and PathValidationError by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5060
- fix(create-turbo): git init must use add by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5058
- feat: go daemon opt-in feature flag by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5076
- Add codemod to transform literals to wildcards by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5054
- Wildcard env by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5017
- fix(daemon): plumb through flush watch errors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5070
- Improve error message when repo is not linked or token is expired by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5089
- fix(turborepo):Support distinguishing unset env vars by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5086

#### New Contributors

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

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

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

---

- [x] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTAuMCIsInVwZGF0ZWRJblZlciI6IjM1LjExMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

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

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

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

**Full Changelog**:
vercel/turbo@v1.10.2...v1.10.3

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

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

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

##### What's Changed

##### Changelog

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

##### New Contributors

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

**Full Changelog**:
vercel/turbo@v1.10.1...v1.10.2

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

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

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

**Full Changelog**:
vercel/turbo@v1.10.0...v1.10.1

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

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

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

#### What's Changed

##### Changelog

- Exclude Pipeline Definition from Global Hash by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4545
- chore(turbo/gen): mark as experimental by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5016
- fix: no longer crash for single projects with global dependencies by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5002
- Add `dotEnv` to `turbo.json` by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4870
- Add missing `--copy` flag. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5021
- feat(basic): add generators to basic example by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5006
- feat(prune) allow pruning of projects using Yarn PnP by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5019
- Update skipping-tasks.mdx by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5039
- Update skipping-tasks.mdx by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5041
- feat(turborepo): remove RelativeSystemPathBuf, clean paths on join by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5020
- fix(create-turbo): default example messaging by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5059
- fix(daemon): kill daemon when root is removed by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5038
- ci(turbo): allow publishing from non-main by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5062
- refactor(turborepo): Consolidated PathError and PathValidationError by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5060
- fix(create-turbo): git init must use add by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5058
- feat: go daemon opt-in feature flag by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5076
- Add codemod to transform literals to wildcards by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5054
- Wildcard env by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5017
- fix(daemon): plumb through flush watch errors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5070
- Improve error message when repo is not linked or token is expired by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5089
- fix(turborepo):Support distinguishing unset env vars by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5086

#### New Contributors

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

**Full Changelog**:
vercel/turbo@v1.9.9...v1.10.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:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTAuMCIsInVwZGF0ZWRJblZlciI6IjM1LjExMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: docs Improvements or additions to documentation pkg: turbo-codemod pr: automerge Kodiak will merge these automatically after checks pass
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants