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

feat: Add npm support for prune #2203

Merged
merged 10 commits into from
Oct 13, 2022

Conversation

chris-olszewski
Copy link
Member

This PR adds a lockfile implementation for npm's package-lock.json allowing us to properly support pruning npm based repos.

Addresses #1830

Notes:

  • Unlike other lockfile implementations the return value of AllDependencies returns fully resolved lockfile keys and not just package names. This is necessary since a package's resolved version might be nested e.g. node_modules/foo/node_modules/bar and calls to ResolveDependency doesn't include who is depending on the package.
  • This implementation does not aim to produce a byte perfect lockfile. By default package-lock.json includes every field that appears any package.json in the dep graph. The fields that are not copied over should be limited to package metadata.
  • Due to time constraints this doesn't support lockfiles created by npm 6 (Node 14). Hopefully this won't be a large chunk of users since that version is hitting EOL this April.

@vercel
Copy link

vercel bot commented Oct 11, 2022

@chris-olszewski is attempting to deploy a commit to the Vercel Team on Vercel.

A member of the Team first needs to authorize it.

@vercel
Copy link

vercel bot commented Oct 11, 2022

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

Name Status Preview Updated
examples-basic-web 🔄 Building (Inspect) Visit Preview Oct 13, 2022 at 6:52PM (UTC)
4 Ignored Deployments
Name Status Preview Updated
examples-designsystem-docs ⬜️ Ignored (Inspect) Visit Preview Oct 13, 2022 at 6:52PM (UTC)
examples-kitchensink-blog ⬜️ Ignored (Inspect) Visit Preview Oct 13, 2022 at 6:52PM (UTC)
examples-native-web ⬜️ Ignored (Inspect) Visit Preview Oct 13, 2022 at 6:52PM (UTC)
examples-svelte-web ⬜️ Ignored (Inspect) Visit Preview Oct 13, 2022 at 6:52PM (UTC)

@chris-olszewski chris-olszewski marked this pull request as ready for review October 11, 2022 22:40
@chris-olszewski chris-olszewski requested a review from a team as a code owner October 11, 2022 22:40
@@ -356,7 +356,7 @@ fs.copyFileSync(
...options,
});
case "npm":
return execa.sync("npm", ["run", command, ...(args || [])], {
return execa.sync("npm", [command, ...(args || [])], {
Copy link
Member

Choose a reason for hiding this comment

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

Curious about this one, don't we still need run for npm?

Copy link
Member Author

Choose a reason for hiding this comment

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

I haven't dug through the git history, but I assume that this function was originally used to run package scripts in tests. Currently in our e2e tests we only use it to run install commands and script execution uses Monorepo.turbo

cli/internal/lockfile/npm_lockfile.go Outdated Show resolved Hide resolved
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.

Some very minor comments. I'm a bit handicapped in the review here, because I haven't spent a great deal of time looking at what goes in the npm lockfile, but the code structure and implementation generally looks good to me!

// Test `turbo prune --scope=a`
// @todo refactor with other package managers
const installArgs =
npmClient === "berry" ? ["--immutable"] : ["--frozen-lockfile"];
const [installCmd, ...installArgs] =
Copy link
Contributor

Choose a reason for hiding this comment

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

could change return value to match { installCmd, installArgs }, but not a big deal

if !ok {
return nil, false
}
deps := make(map[string]string, len(entry.Dependencies)+len(entry.DevDependencies)+len(entry.PeerDependencies)+len(entry.OptionalDependencies))
Copy link
Contributor

Choose a reason for hiding this comment

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

go fmt doesn't like spaces between + operators?

Copy link
Member Author

Choose a reason for hiding this comment

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

Apparently not?

cli/internal/lockfile/npm_lockfile.go Show resolved Hide resolved
cli/internal/lockfile/npm_lockfile.go Show resolved Hide resolved
@chris-olszewski chris-olszewski merged commit e4ef973 into vercel:main Oct 13, 2022
renovate bot referenced this pull request in fwouts/previewjs Oct 21, 2022
[![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://turborepo.org)
([source](https://togithub.com/vercel/turborepo)) | [`1.5.6` ->
`1.6.0`](https://renovatebot.com/diffs/npm/turbo/1.5.6/1.6.0) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.6.0/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.6.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.6.0/compatibility-slim/1.5.6)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.6.0/confidence-slim/1.5.6)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turborepo</summary>

###
[`v1.6.0`](https://togithub.com/vercel/turborepo/releases/tag/v1.6.0)

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v1.5.6...v1.6.0)

#### What's Changed

- seo: Add script to generate RSS feed.xml to docs site by
[@&#8203;jaredpalmer](https://togithub.com/jaredpalmer) in
[https://github.com/vercel/turborepo/pull/2132](https://togithub.com/vercel/turborepo/pull/2132)
- Turbo-specific changes to build containers by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/1930](https://togithub.com/vercel/turborepo/pull/1930)
- docs: Tweak tracking in card headers by
[@&#8203;jaredpalmer](https://togithub.com/jaredpalmer) in
[https://github.com/vercel/turborepo/pull/2133](https://togithub.com/vercel/turborepo/pull/2133)
- Change some variable names by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2136](https://togithub.com/vercel/turborepo/pull/2136)
- chore(deps): update dependency
[@&#8203;babel/core](https://togithub.com/babel/core) to v7.19.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2127](https://togithub.com/vercel/turborepo/pull/2127)
- fix: Glob negation in outputs by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turborepo/pull/2031](https://togithub.com/vercel/turborepo/pull/2031)
- Use unix:path to address unix socket by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2137](https://togithub.com/vercel/turborepo/pull/2137)
- Fix broken links on "Workspace" Doc by
[@&#8203;pakaponk](https://togithub.com/pakaponk) in
[https://github.com/vercel/turborepo/pull/2141](https://togithub.com/vercel/turborepo/pull/2141)
- Use Warn method for logWarning by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2135](https://togithub.com/vercel/turborepo/pull/2135)
- chore(deps): update dependency postcss to v8.4.17 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2144](https://togithub.com/vercel/turborepo/pull/2144)
- chore(deps): update dependency typescript to v4.8.4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2128](https://togithub.com/vercel/turborepo/pull/2128)
- fix(deps): update dependency ts-json-schema-generator to v1.1.2 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2139](https://togithub.com/vercel/turborepo/pull/2139)
- fix(packages): add repo, directory, and bugs fields by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2161](https://togithub.com/vercel/turborepo/pull/2161)
- feat: prune support for lockfiles containing patches by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2151](https://togithub.com/vercel/turborepo/pull/2151)
- Remove prefixes from stored logs by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2126](https://togithub.com/vercel/turborepo/pull/2126)
- fix: filename for web depending on ui by
[@&#8203;evliu](https://togithub.com/evliu) in
[https://github.com/vercel/turborepo/pull/2164](https://togithub.com/vercel/turborepo/pull/2164)
- seo: Fix 404s from search console by
[@&#8203;jaredpalmer](https://togithub.com/jaredpalmer) in
[https://github.com/vercel/turborepo/pull/2166](https://togithub.com/vercel/turborepo/pull/2166)
- seo: set canonical urls by
[@&#8203;jaredpalmer](https://togithub.com/jaredpalmer) in
[https://github.com/vercel/turborepo/pull/2168](https://togithub.com/vercel/turborepo/pull/2168)
- Turn off golang dependency auto updates by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2156](https://togithub.com/vercel/turborepo/pull/2156)
- feat: Avoid panic from lockfile issues by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2163](https://togithub.com/vercel/turborepo/pull/2163)
- feat(docs): add sentry by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2169](https://togithub.com/vercel/turborepo/pull/2169)
- Caching, but to tar files. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/1991](https://togithub.com/vercel/turborepo/pull/1991)
- fix handling of injected dependencies for pnpm prune by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2121](https://togithub.com/vercel/turborepo/pull/2121)
- Remove INFO prefix from log line by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2171](https://togithub.com/vercel/turborepo/pull/2171)
- Update examples to always quote the ESLint glob. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2130](https://togithub.com/vercel/turborepo/pull/2130)
- chore(examples): migrate svelte to latest by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2173](https://togithub.com/vercel/turborepo/pull/2173)
- Fix usage of uninitialized Ui instance by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2172](https://togithub.com/vercel/turborepo/pull/2172)
- fix(examples): correct turbo caching for storybook by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2176](https://togithub.com/vercel/turborepo/pull/2176)
- Revert "Caching, but to tar files." by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2178](https://togithub.com/vercel/turborepo/pull/2178)
- support new paused status by
[@&#8203;blake-mealey](https://togithub.com/blake-mealey) in
[https://github.com/vercel/turborepo/pull/2179](https://togithub.com/vercel/turborepo/pull/2179)
- docs: Fix Pipeline API design link by
[@&#8203;brunojppb](https://togithub.com/brunojppb) in
[https://github.com/vercel/turborepo/pull/2153](https://togithub.com/vercel/turborepo/pull/2153)
- Use two stage release process, plus diamond workflow for
cross-compiling by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2051](https://togithub.com/vercel/turborepo/pull/2051)
- fix(examples): correct react-native ui output by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2181](https://togithub.com/vercel/turborepo/pull/2181)
- Merge release branch staging-1.5.6-canary.2 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2182](https://togithub.com/vercel/turborepo/pull/2182)
- Add back bin/ directory by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2184](https://togithub.com/vercel/turborepo/pull/2184)
- Merge release branch staging-1.5.6-canary.3 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2185](https://togithub.com/vercel/turborepo/pull/2185)
- Merge release branch staging-1.5.6-canary.4 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2186](https://togithub.com/vercel/turborepo/pull/2186)
- feat(examples): add custom ignore script by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2183](https://togithub.com/vercel/turborepo/pull/2183)
- Added explainer on environment variables by
[@&#8203;mattpocock](https://togithub.com/mattpocock) in
[https://github.com/vercel/turborepo/pull/2115](https://togithub.com/vercel/turborepo/pull/2115)
- Merge release branch staging-1.5.6 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2193](https://togithub.com/vercel/turborepo/pull/2193)
- Fix leaving .turbo-cookie around by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2180](https://togithub.com/vercel/turborepo/pull/2180)
- fix(examples): cache .vercel for adapter-vercel by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2191](https://togithub.com/vercel/turborepo/pull/2191)
- fix(turbo): add new docs env vars by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2202](https://togithub.com/vercel/turborepo/pull/2202)
- cache-to-.tar.zst by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2195](https://togithub.com/vercel/turborepo/pull/2195)
- feat(cli): log auto included envs and framework by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2201](https://togithub.com/vercel/turborepo/pull/2201)
- feat(cli): global defaults for filters by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2211](https://togithub.com/vercel/turborepo/pull/2211)
- Show branch name rather than commit by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2214](https://togithub.com/vercel/turborepo/pull/2214)
- feature(shim): Merge shim directory by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turborepo/pull/2210](https://togithub.com/vercel/turborepo/pull/2210)
- feat: Enable sub-lockfile hashing for package mangers other than yarn
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2216](https://togithub.com/vercel/turborepo/pull/2216)
- chore(cli): support cobra completion command by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2217](https://togithub.com/vercel/turborepo/pull/2217)
- fix(deps): update rust crate anyhow to 1.0.65 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2219](https://togithub.com/vercel/turborepo/pull/2219)
- fix(examples): fix inconsistent package naming in with-changesets
example by [@&#8203;erikhofer](https://togithub.com/erikhofer) in
[https://github.com/vercel/turborepo/pull/2225](https://togithub.com/vercel/turborepo/pull/2225)
- Merge release branch staging-1.5.7-canary.0 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2226](https://togithub.com/vercel/turborepo/pull/2226)
- feat: Add npm support for prune by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2203](https://togithub.com/vercel/turborepo/pull/2203)
- feat(examples): update docker file to install libc6-compact by
[@&#8203;adarshaacharya](https://togithub.com/adarshaacharya) in
[https://github.com/vercel/turborepo/pull/2228](https://togithub.com/vercel/turborepo/pull/2228)
- Add note about glibc in alpine docker environments by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2212](https://togithub.com/vercel/turborepo/pull/2212)
- chore(docs): update nextra to fix anchor bug by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2229](https://togithub.com/vercel/turborepo/pull/2229)
- Build shim locally, along with libturbo.a by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2218](https://togithub.com/vercel/turborepo/pull/2218)
- Mark no-daemon as publicly visible by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2231](https://togithub.com/vercel/turborepo/pull/2231)
- Drop unused dependency on cache location by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2233](https://togithub.com/vercel/turborepo/pull/2233)
- Remove deprecated flags. Test safety. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2205](https://togithub.com/vercel/turborepo/pull/2205)
- Improve type in e2e test script by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2155](https://togithub.com/vercel/turborepo/pull/2155)
- chore(deps): update pnpm/action-setup action to v2.2.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2236](https://togithub.com/vercel/turborepo/pull/2236)
- chore(deps): update dependency postcss to v8.4.18 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2243](https://togithub.com/vercel/turborepo/pull/2243)
- Add Agrotoken to showcase by
[@&#8203;MateoKruk](https://togithub.com/MateoKruk) in
[https://github.com/vercel/turborepo/pull/2240](https://togithub.com/vercel/turborepo/pull/2240)
- fix(shim): help flag on shim by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turborepo/pull/2252](https://togithub.com/vercel/turborepo/pull/2252)
- docs(ci): use current checkout and setup-node versions by
[@&#8203;rgomezcasas](https://togithub.com/rgomezcasas) in
[https://github.com/vercel/turborepo/pull/2209](https://togithub.com/vercel/turborepo/pull/2209)
- Delete unused run-examples script by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2125](https://togithub.com/vercel/turborepo/pull/2125)
- Merge release branch staging-1.6.0-canary.0 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2261](https://togithub.com/vercel/turborepo/pull/2261)
- Save file that keeps autoformatting on its own by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2257](https://togithub.com/vercel/turborepo/pull/2257)
- fix: vendor go-yaml by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2227](https://togithub.com/vercel/turborepo/pull/2227)
- Fix heading level for CLI option in docs by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2235](https://togithub.com/vercel/turborepo/pull/2235)
- Consolidate engine, taskGraph, and scheduler naming to Engine by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2256](https://togithub.com/vercel/turborepo/pull/2256)
- Rename struct to be more accurate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2268](https://togithub.com/vercel/turborepo/pull/2268)
- Ensure that the Engines field parses correctly. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2272](https://togithub.com/vercel/turborepo/pull/2272)
- Merge release branch staging-1.6.0-canary.1 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2273](https://togithub.com/vercel/turborepo/pull/2273)
- fix(deps): update rust crate serde_json to 1.0.86 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2237](https://togithub.com/vercel/turborepo/pull/2237)
- Update help text by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2278](https://togithub.com/vercel/turborepo/pull/2278)
- fix(shim): Fixed version flag by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turborepo/pull/2276](https://togithub.com/vercel/turborepo/pull/2276)
- Start on a shim release process by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2274](https://togithub.com/vercel/turborepo/pull/2274)
- publish 1.6.0-canary.2 to registry by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2279](https://togithub.com/vercel/turborepo/pull/2279)
- publish 1.6.0-canary.3 to registry by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2287](https://togithub.com/vercel/turborepo/pull/2287)
- Write root inference in Go. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2283](https://togithub.com/vercel/turborepo/pull/2283)
- Merge release branch staging-1.6.0-canary.4 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2289](https://togithub.com/vercel/turborepo/pull/2289)
- Include the argument separator for dotenv. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2292](https://togithub.com/vercel/turborepo/pull/2292)
- Fix typo in monorepo docs by
[@&#8203;benjervis](https://togithub.com/benjervis) in
[https://github.com/vercel/turborepo/pull/2290](https://togithub.com/vercel/turborepo/pull/2290)

#### New Contributors

- [@&#8203;evliu](https://togithub.com/evliu) made their first
contribution in
[https://github.com/vercel/turborepo/pull/2164](https://togithub.com/vercel/turborepo/pull/2164)
- [@&#8203;blake-mealey](https://togithub.com/blake-mealey) made their
first contribution in
[https://github.com/vercel/turborepo/pull/2179](https://togithub.com/vercel/turborepo/pull/2179)
- [@&#8203;erikhofer](https://togithub.com/erikhofer) made their first
contribution in
[https://github.com/vercel/turborepo/pull/2225](https://togithub.com/vercel/turborepo/pull/2225)
- [@&#8203;adarshaacharya](https://togithub.com/adarshaacharya) made
their first contribution in
[https://github.com/vercel/turborepo/pull/2228](https://togithub.com/vercel/turborepo/pull/2228)
- [@&#8203;MateoKruk](https://togithub.com/MateoKruk) made their first
contribution in
[https://github.com/vercel/turborepo/pull/2240](https://togithub.com/vercel/turborepo/pull/2240)
- [@&#8203;rgomezcasas](https://togithub.com/rgomezcasas) made their
first contribution in
[https://github.com/vercel/turborepo/pull/2209](https://togithub.com/vercel/turborepo/pull/2209)
- [@&#8203;benjervis](https://togithub.com/benjervis) made their first
contribution in
[https://github.com/vercel/turborepo/pull/2290](https://togithub.com/vercel/turborepo/pull/2290)

**Full Changelog**:
vercel/turborepo@v1.5.5...v1.6.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, click
this checkbox.

---

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:eyJjcmVhdGVkSW5WZXIiOiIzMi4yNDEuNyIsInVwZGF0ZWRJblZlciI6IjMyLjI0MS43In0=-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fuxingloh referenced this pull request in fuxingloh/contented Oct 27, 2022
[![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://turborepo.org)
([source](https://togithub.com/vercel/turborepo)) | [`^1.5.6` ->
`^1.6.1`](https://renovatebot.com/diffs/npm/turbo/1.5.6/1.6.1) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.6.1/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.6.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.6.1/compatibility-slim/1.5.6)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.6.1/confidence-slim/1.5.6)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turborepo</summary>

###
[`v1.6.1`](https://togithub.com/vercel/turborepo/compare/v1.6.0...v1.6.1)

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v1.6.0...v1.6.1)

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

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v1.5.6...v1.6.0)

#### What's Changed

- seo: Add script to generate RSS feed.xml to docs site by
[@&#8203;jaredpalmer](https://togithub.com/jaredpalmer) in
[https://github.com/vercel/turborepo/pull/2132](https://togithub.com/vercel/turborepo/pull/2132)
- Turbo-specific changes to build containers by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/1930](https://togithub.com/vercel/turborepo/pull/1930)
- docs: Tweak tracking in card headers by
[@&#8203;jaredpalmer](https://togithub.com/jaredpalmer) in
[https://github.com/vercel/turborepo/pull/2133](https://togithub.com/vercel/turborepo/pull/2133)
- Change some variable names by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2136](https://togithub.com/vercel/turborepo/pull/2136)
- chore(deps): update dependency
[@&#8203;babel/core](https://togithub.com/babel/core) to v7.19.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2127](https://togithub.com/vercel/turborepo/pull/2127)
- fix: Glob negation in outputs by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turborepo/pull/2031](https://togithub.com/vercel/turborepo/pull/2031)
- Use unix:path to address unix socket by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2137](https://togithub.com/vercel/turborepo/pull/2137)
- Fix broken links on "Workspace" Doc by
[@&#8203;pakaponk](https://togithub.com/pakaponk) in
[https://github.com/vercel/turborepo/pull/2141](https://togithub.com/vercel/turborepo/pull/2141)
- Use Warn method for logWarning by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2135](https://togithub.com/vercel/turborepo/pull/2135)
- chore(deps): update dependency postcss to v8.4.17 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2144](https://togithub.com/vercel/turborepo/pull/2144)
- chore(deps): update dependency typescript to v4.8.4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2128](https://togithub.com/vercel/turborepo/pull/2128)
- fix(deps): update dependency ts-json-schema-generator to v1.1.2 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2139](https://togithub.com/vercel/turborepo/pull/2139)
- fix(packages): add repo, directory, and bugs fields by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2161](https://togithub.com/vercel/turborepo/pull/2161)
- feat: prune support for lockfiles containing patches by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2151](https://togithub.com/vercel/turborepo/pull/2151)
- Remove prefixes from stored logs by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2126](https://togithub.com/vercel/turborepo/pull/2126)
- fix: filename for web depending on ui by
[@&#8203;evliu](https://togithub.com/evliu) in
[https://github.com/vercel/turborepo/pull/2164](https://togithub.com/vercel/turborepo/pull/2164)
- seo: Fix 404s from search console by
[@&#8203;jaredpalmer](https://togithub.com/jaredpalmer) in
[https://github.com/vercel/turborepo/pull/2166](https://togithub.com/vercel/turborepo/pull/2166)
- seo: set canonical urls by
[@&#8203;jaredpalmer](https://togithub.com/jaredpalmer) in
[https://github.com/vercel/turborepo/pull/2168](https://togithub.com/vercel/turborepo/pull/2168)
- Turn off golang dependency auto updates by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2156](https://togithub.com/vercel/turborepo/pull/2156)
- feat: Avoid panic from lockfile issues by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2163](https://togithub.com/vercel/turborepo/pull/2163)
- feat(docs): add sentry by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2169](https://togithub.com/vercel/turborepo/pull/2169)
- Caching, but to tar files. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/1991](https://togithub.com/vercel/turborepo/pull/1991)
- fix handling of injected dependencies for pnpm prune by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2121](https://togithub.com/vercel/turborepo/pull/2121)
- Remove INFO prefix from log line by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2171](https://togithub.com/vercel/turborepo/pull/2171)
- Update examples to always quote the ESLint glob. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2130](https://togithub.com/vercel/turborepo/pull/2130)
- chore(examples): migrate svelte to latest by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2173](https://togithub.com/vercel/turborepo/pull/2173)
- Fix usage of uninitialized Ui instance by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2172](https://togithub.com/vercel/turborepo/pull/2172)
- fix(examples): correct turbo caching for storybook by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2176](https://togithub.com/vercel/turborepo/pull/2176)
- Revert "Caching, but to tar files." by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2178](https://togithub.com/vercel/turborepo/pull/2178)
- support new paused status by
[@&#8203;blake-mealey](https://togithub.com/blake-mealey) in
[https://github.com/vercel/turborepo/pull/2179](https://togithub.com/vercel/turborepo/pull/2179)
- docs: Fix Pipeline API design link by
[@&#8203;brunojppb](https://togithub.com/brunojppb) in
[https://github.com/vercel/turborepo/pull/2153](https://togithub.com/vercel/turborepo/pull/2153)
- Use two stage release process, plus diamond workflow for
cross-compiling by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2051](https://togithub.com/vercel/turborepo/pull/2051)
- fix(examples): correct react-native ui output by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2181](https://togithub.com/vercel/turborepo/pull/2181)
- Merge release branch staging-1.5.6-canary.2 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2182](https://togithub.com/vercel/turborepo/pull/2182)
- Add back bin/ directory by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2184](https://togithub.com/vercel/turborepo/pull/2184)
- Merge release branch staging-1.5.6-canary.3 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2185](https://togithub.com/vercel/turborepo/pull/2185)
- Merge release branch staging-1.5.6-canary.4 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2186](https://togithub.com/vercel/turborepo/pull/2186)
- feat(examples): add custom ignore script by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2183](https://togithub.com/vercel/turborepo/pull/2183)
- Added explainer on environment variables by
[@&#8203;mattpocock](https://togithub.com/mattpocock) in
[https://github.com/vercel/turborepo/pull/2115](https://togithub.com/vercel/turborepo/pull/2115)
- Merge release branch staging-1.5.6 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2193](https://togithub.com/vercel/turborepo/pull/2193)
- Fix leaving .turbo-cookie around by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2180](https://togithub.com/vercel/turborepo/pull/2180)
- fix(examples): cache .vercel for adapter-vercel by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2191](https://togithub.com/vercel/turborepo/pull/2191)
- fix(turbo): add new docs env vars by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2202](https://togithub.com/vercel/turborepo/pull/2202)
- cache-to-.tar.zst by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2195](https://togithub.com/vercel/turborepo/pull/2195)
- feat(cli): log auto included envs and framework by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2201](https://togithub.com/vercel/turborepo/pull/2201)
- feat(cli): global defaults for filters by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2211](https://togithub.com/vercel/turborepo/pull/2211)
- Show branch name rather than commit by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2214](https://togithub.com/vercel/turborepo/pull/2214)
- feature(shim): Merge shim directory by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turborepo/pull/2210](https://togithub.com/vercel/turborepo/pull/2210)
- feat: Enable sub-lockfile hashing for package mangers other than yarn
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2216](https://togithub.com/vercel/turborepo/pull/2216)
- chore(cli): support cobra completion command by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2217](https://togithub.com/vercel/turborepo/pull/2217)
- fix(deps): update rust crate anyhow to 1.0.65 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2219](https://togithub.com/vercel/turborepo/pull/2219)
- fix(examples): fix inconsistent package naming in with-changesets
example by [@&#8203;erikhofer](https://togithub.com/erikhofer) in
[https://github.com/vercel/turborepo/pull/2225](https://togithub.com/vercel/turborepo/pull/2225)
- Merge release branch staging-1.5.7-canary.0 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2226](https://togithub.com/vercel/turborepo/pull/2226)
- feat: Add npm support for prune by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2203](https://togithub.com/vercel/turborepo/pull/2203)
- feat(examples): update docker file to install libc6-compact by
[@&#8203;adarshaacharya](https://togithub.com/adarshaacharya) in
[https://github.com/vercel/turborepo/pull/2228](https://togithub.com/vercel/turborepo/pull/2228)
- Add note about glibc in alpine docker environments by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2212](https://togithub.com/vercel/turborepo/pull/2212)
- chore(docs): update nextra to fix anchor bug by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2229](https://togithub.com/vercel/turborepo/pull/2229)
- Build shim locally, along with libturbo.a by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2218](https://togithub.com/vercel/turborepo/pull/2218)
- Mark no-daemon as publicly visible by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2231](https://togithub.com/vercel/turborepo/pull/2231)
- Drop unused dependency on cache location by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2233](https://togithub.com/vercel/turborepo/pull/2233)
- Remove deprecated flags. Test safety. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2205](https://togithub.com/vercel/turborepo/pull/2205)
- Improve type in e2e test script by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2155](https://togithub.com/vercel/turborepo/pull/2155)
- chore(deps): update pnpm/action-setup action to v2.2.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2236](https://togithub.com/vercel/turborepo/pull/2236)
- chore(deps): update dependency postcss to v8.4.18 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2243](https://togithub.com/vercel/turborepo/pull/2243)
- Add Agrotoken to showcase by
[@&#8203;MateoKruk](https://togithub.com/MateoKruk) in
[https://github.com/vercel/turborepo/pull/2240](https://togithub.com/vercel/turborepo/pull/2240)
- fix(shim): help flag on shim by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turborepo/pull/2252](https://togithub.com/vercel/turborepo/pull/2252)
- docs(ci): use current checkout and setup-node versions by
[@&#8203;rgomezcasas](https://togithub.com/rgomezcasas) in
[https://github.com/vercel/turborepo/pull/2209](https://togithub.com/vercel/turborepo/pull/2209)
- Delete unused run-examples script by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2125](https://togithub.com/vercel/turborepo/pull/2125)
- Merge release branch staging-1.6.0-canary.0 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2261](https://togithub.com/vercel/turborepo/pull/2261)
- Save file that keeps autoformatting on its own by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2257](https://togithub.com/vercel/turborepo/pull/2257)
- fix: vendor go-yaml by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2227](https://togithub.com/vercel/turborepo/pull/2227)
- Fix heading level for CLI option in docs by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2235](https://togithub.com/vercel/turborepo/pull/2235)
- Consolidate engine, taskGraph, and scheduler naming to Engine by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2256](https://togithub.com/vercel/turborepo/pull/2256)
- Rename struct to be more accurate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2268](https://togithub.com/vercel/turborepo/pull/2268)
- Ensure that the Engines field parses correctly. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2272](https://togithub.com/vercel/turborepo/pull/2272)
- Merge release branch staging-1.6.0-canary.1 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2273](https://togithub.com/vercel/turborepo/pull/2273)
- fix(deps): update rust crate serde_json to 1.0.86 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2237](https://togithub.com/vercel/turborepo/pull/2237)
- Update help text by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2278](https://togithub.com/vercel/turborepo/pull/2278)
- fix(shim): Fixed version flag by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turborepo/pull/2276](https://togithub.com/vercel/turborepo/pull/2276)
- Start on a shim release process by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2274](https://togithub.com/vercel/turborepo/pull/2274)
- publish 1.6.0-canary.2 to registry by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2279](https://togithub.com/vercel/turborepo/pull/2279)
- publish 1.6.0-canary.3 to registry by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2287](https://togithub.com/vercel/turborepo/pull/2287)
- Write root inference in Go. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2283](https://togithub.com/vercel/turborepo/pull/2283)
- Merge release branch staging-1.6.0-canary.4 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2289](https://togithub.com/vercel/turborepo/pull/2289)
- Include the argument separator for dotenv. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2292](https://togithub.com/vercel/turborepo/pull/2292)
- Fix typo in monorepo docs by
[@&#8203;benjervis](https://togithub.com/benjervis) in
[https://github.com/vercel/turborepo/pull/2290](https://togithub.com/vercel/turborepo/pull/2290)

#### New Contributors

- [@&#8203;evliu](https://togithub.com/evliu) made their first
contribution in
[https://github.com/vercel/turborepo/pull/2164](https://togithub.com/vercel/turborepo/pull/2164)
- [@&#8203;blake-mealey](https://togithub.com/blake-mealey) made their
first contribution in
[https://github.com/vercel/turborepo/pull/2179](https://togithub.com/vercel/turborepo/pull/2179)
- [@&#8203;erikhofer](https://togithub.com/erikhofer) made their first
contribution in
[https://github.com/vercel/turborepo/pull/2225](https://togithub.com/vercel/turborepo/pull/2225)
- [@&#8203;adarshaacharya](https://togithub.com/adarshaacharya) made
their first contribution in
[https://github.com/vercel/turborepo/pull/2228](https://togithub.com/vercel/turborepo/pull/2228)
- [@&#8203;MateoKruk](https://togithub.com/MateoKruk) made their first
contribution in
[https://github.com/vercel/turborepo/pull/2240](https://togithub.com/vercel/turborepo/pull/2240)
- [@&#8203;rgomezcasas](https://togithub.com/rgomezcasas) made their
first contribution in
[https://github.com/vercel/turborepo/pull/2209](https://togithub.com/vercel/turborepo/pull/2209)
- [@&#8203;benjervis](https://togithub.com/benjervis) made their first
contribution in
[https://github.com/vercel/turborepo/pull/2290](https://togithub.com/vercel/turborepo/pull/2290)

**Full Changelog**:
vercel/turborepo@v1.5.5...v1.6.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, click
this checkbox.

---

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:eyJjcmVhdGVkSW5WZXIiOiIzMi4yNDEuNyIsInVwZGF0ZWRJblZlciI6IjMyLjI0MS4xMSJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fuxingloh referenced this pull request in DeFiCh/metachain Oct 31, 2022
[![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://turborepo.org)
([source](https://togithub.com/vercel/turbo)) | [`^1.5.6` ->
`^1.6.2`](https://renovatebot.com/diffs/npm/turbo/1.5.6/1.6.2) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.6.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.6.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.6.2/compatibility-slim/1.5.6)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.6.2/confidence-slim/1.5.6)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

###
[`v1.6.2`](https://togithub.com/vercel/turbo/compare/v1.6.1...v1.6.2)

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

###
[`v1.6.1`](https://togithub.com/vercel/turbo/compare/v1.6.0...v1.6.1)

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

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

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

#### What's Changed

- seo: Add script to generate RSS feed.xml to docs site by
[@&#8203;jaredpalmer](https://togithub.com/jaredpalmer) in
[https://github.com/vercel/turborepo/pull/2132](https://togithub.com/vercel/turborepo/pull/2132)
- Turbo-specific changes to build containers by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/1930](https://togithub.com/vercel/turborepo/pull/1930)
- docs: Tweak tracking in card headers by
[@&#8203;jaredpalmer](https://togithub.com/jaredpalmer) in
[https://github.com/vercel/turborepo/pull/2133](https://togithub.com/vercel/turborepo/pull/2133)
- Change some variable names by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2136](https://togithub.com/vercel/turborepo/pull/2136)
- chore(deps): update dependency
[@&#8203;babel/core](https://togithub.com/babel/core) to v7.19.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2127](https://togithub.com/vercel/turborepo/pull/2127)
- fix: Glob negation in outputs by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turborepo/pull/2031](https://togithub.com/vercel/turborepo/pull/2031)
- Use unix:path to address unix socket by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2137](https://togithub.com/vercel/turborepo/pull/2137)
- Fix broken links on "Workspace" Doc by
[@&#8203;pakaponk](https://togithub.com/pakaponk) in
[https://github.com/vercel/turborepo/pull/2141](https://togithub.com/vercel/turborepo/pull/2141)
- Use Warn method for logWarning by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2135](https://togithub.com/vercel/turborepo/pull/2135)
- chore(deps): update dependency postcss to v8.4.17 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2144](https://togithub.com/vercel/turborepo/pull/2144)
- chore(deps): update dependency typescript to v4.8.4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2128](https://togithub.com/vercel/turborepo/pull/2128)
- fix(deps): update dependency ts-json-schema-generator to v1.1.2 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2139](https://togithub.com/vercel/turborepo/pull/2139)
- fix(packages): add repo, directory, and bugs fields by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2161](https://togithub.com/vercel/turborepo/pull/2161)
- feat: prune support for lockfiles containing patches by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2151](https://togithub.com/vercel/turborepo/pull/2151)
- Remove prefixes from stored logs by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2126](https://togithub.com/vercel/turborepo/pull/2126)
- fix: filename for web depending on ui by
[@&#8203;evliu](https://togithub.com/evliu) in
[https://github.com/vercel/turborepo/pull/2164](https://togithub.com/vercel/turborepo/pull/2164)
- seo: Fix 404s from search console by
[@&#8203;jaredpalmer](https://togithub.com/jaredpalmer) in
[https://github.com/vercel/turborepo/pull/2166](https://togithub.com/vercel/turborepo/pull/2166)
- seo: set canonical urls by
[@&#8203;jaredpalmer](https://togithub.com/jaredpalmer) in
[https://github.com/vercel/turborepo/pull/2168](https://togithub.com/vercel/turborepo/pull/2168)
- Turn off golang dependency auto updates by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2156](https://togithub.com/vercel/turborepo/pull/2156)
- feat: Avoid panic from lockfile issues by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2163](https://togithub.com/vercel/turborepo/pull/2163)
- feat(docs): add sentry by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2169](https://togithub.com/vercel/turborepo/pull/2169)
- Caching, but to tar files. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/1991](https://togithub.com/vercel/turborepo/pull/1991)
- fix handling of injected dependencies for pnpm prune by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2121](https://togithub.com/vercel/turborepo/pull/2121)
- Remove INFO prefix from log line by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2171](https://togithub.com/vercel/turborepo/pull/2171)
- Update examples to always quote the ESLint glob. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2130](https://togithub.com/vercel/turborepo/pull/2130)
- chore(examples): migrate svelte to latest by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2173](https://togithub.com/vercel/turborepo/pull/2173)
- Fix usage of uninitialized Ui instance by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2172](https://togithub.com/vercel/turborepo/pull/2172)
- fix(examples): correct turbo caching for storybook by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2176](https://togithub.com/vercel/turborepo/pull/2176)
- Revert "Caching, but to tar files." by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2178](https://togithub.com/vercel/turborepo/pull/2178)
- support new paused status by
[@&#8203;blake-mealey](https://togithub.com/blake-mealey) in
[https://github.com/vercel/turborepo/pull/2179](https://togithub.com/vercel/turborepo/pull/2179)
- docs: Fix Pipeline API design link by
[@&#8203;brunojppb](https://togithub.com/brunojppb) in
[https://github.com/vercel/turborepo/pull/2153](https://togithub.com/vercel/turborepo/pull/2153)
- Use two stage release process, plus diamond workflow for
cross-compiling by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2051](https://togithub.com/vercel/turborepo/pull/2051)
- fix(examples): correct react-native ui output by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2181](https://togithub.com/vercel/turborepo/pull/2181)
- Merge release branch staging-1.5.6-canary.2 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2182](https://togithub.com/vercel/turborepo/pull/2182)
- Add back bin/ directory by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2184](https://togithub.com/vercel/turborepo/pull/2184)
- Merge release branch staging-1.5.6-canary.3 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2185](https://togithub.com/vercel/turborepo/pull/2185)
- Merge release branch staging-1.5.6-canary.4 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2186](https://togithub.com/vercel/turborepo/pull/2186)
- feat(examples): add custom ignore script by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2183](https://togithub.com/vercel/turborepo/pull/2183)
- Added explainer on environment variables by
[@&#8203;mattpocock](https://togithub.com/mattpocock) in
[https://github.com/vercel/turborepo/pull/2115](https://togithub.com/vercel/turborepo/pull/2115)
- Merge release branch staging-1.5.6 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2193](https://togithub.com/vercel/turborepo/pull/2193)
- Fix leaving .turbo-cookie around by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2180](https://togithub.com/vercel/turborepo/pull/2180)
- fix(examples): cache .vercel for adapter-vercel by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2191](https://togithub.com/vercel/turborepo/pull/2191)
- fix(turbo): add new docs env vars by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2202](https://togithub.com/vercel/turborepo/pull/2202)
- cache-to-.tar.zst by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2195](https://togithub.com/vercel/turborepo/pull/2195)
- feat(cli): log auto included envs and framework by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2201](https://togithub.com/vercel/turborepo/pull/2201)
- feat(cli): global defaults for filters by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2211](https://togithub.com/vercel/turborepo/pull/2211)
- Show branch name rather than commit by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2214](https://togithub.com/vercel/turborepo/pull/2214)
- feature(shim): Merge shim directory by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turborepo/pull/2210](https://togithub.com/vercel/turborepo/pull/2210)
- feat: Enable sub-lockfile hashing for package mangers other than yarn
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2216](https://togithub.com/vercel/turborepo/pull/2216)
- chore(cli): support cobra completion command by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2217](https://togithub.com/vercel/turborepo/pull/2217)
- fix(deps): update rust crate anyhow to 1.0.65 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2219](https://togithub.com/vercel/turborepo/pull/2219)
- fix(examples): fix inconsistent package naming in with-changesets
example by [@&#8203;erikhofer](https://togithub.com/erikhofer) in
[https://github.com/vercel/turborepo/pull/2225](https://togithub.com/vercel/turborepo/pull/2225)
- Merge release branch staging-1.5.7-canary.0 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2226](https://togithub.com/vercel/turborepo/pull/2226)
- feat: Add npm support for prune by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2203](https://togithub.com/vercel/turborepo/pull/2203)
- feat(examples): update docker file to install libc6-compact by
[@&#8203;adarshaacharya](https://togithub.com/adarshaacharya) in
[https://github.com/vercel/turborepo/pull/2228](https://togithub.com/vercel/turborepo/pull/2228)
- Add note about glibc in alpine docker environments by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2212](https://togithub.com/vercel/turborepo/pull/2212)
- chore(docs): update nextra to fix anchor bug by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2229](https://togithub.com/vercel/turborepo/pull/2229)
- Build shim locally, along with libturbo.a by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2218](https://togithub.com/vercel/turborepo/pull/2218)
- Mark no-daemon as publicly visible by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2231](https://togithub.com/vercel/turborepo/pull/2231)
- Drop unused dependency on cache location by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2233](https://togithub.com/vercel/turborepo/pull/2233)
- Remove deprecated flags. Test safety. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2205](https://togithub.com/vercel/turborepo/pull/2205)
- Improve type in e2e test script by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2155](https://togithub.com/vercel/turborepo/pull/2155)
- chore(deps): update pnpm/action-setup action to v2.2.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2236](https://togithub.com/vercel/turborepo/pull/2236)
- chore(deps): update dependency postcss to v8.4.18 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2243](https://togithub.com/vercel/turborepo/pull/2243)
- Add Agrotoken to showcase by
[@&#8203;MateoKruk](https://togithub.com/MateoKruk) in
[https://github.com/vercel/turborepo/pull/2240](https://togithub.com/vercel/turborepo/pull/2240)
- fix(shim): help flag on shim by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turborepo/pull/2252](https://togithub.com/vercel/turborepo/pull/2252)
- docs(ci): use current checkout and setup-node versions by
[@&#8203;rgomezcasas](https://togithub.com/rgomezcasas) in
[https://github.com/vercel/turborepo/pull/2209](https://togithub.com/vercel/turborepo/pull/2209)
- Delete unused run-examples script by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2125](https://togithub.com/vercel/turborepo/pull/2125)
- Merge release branch staging-1.6.0-canary.0 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2261](https://togithub.com/vercel/turborepo/pull/2261)
- Save file that keeps autoformatting on its own by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2257](https://togithub.com/vercel/turborepo/pull/2257)
- fix: vendor go-yaml by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2227](https://togithub.com/vercel/turborepo/pull/2227)
- Fix heading level for CLI option in docs by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2235](https://togithub.com/vercel/turborepo/pull/2235)
- Consolidate engine, taskGraph, and scheduler naming to Engine by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2256](https://togithub.com/vercel/turborepo/pull/2256)
- Rename struct to be more accurate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2268](https://togithub.com/vercel/turborepo/pull/2268)
- Ensure that the Engines field parses correctly. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2272](https://togithub.com/vercel/turborepo/pull/2272)
- Merge release branch staging-1.6.0-canary.1 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2273](https://togithub.com/vercel/turborepo/pull/2273)
- fix(deps): update rust crate serde_json to 1.0.86 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2237](https://togithub.com/vercel/turborepo/pull/2237)
- Update help text by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2278](https://togithub.com/vercel/turborepo/pull/2278)
- fix(shim): Fixed version flag by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turborepo/pull/2276](https://togithub.com/vercel/turborepo/pull/2276)
- Start on a shim release process by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2274](https://togithub.com/vercel/turborepo/pull/2274)
- publish 1.6.0-canary.2 to registry by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2279](https://togithub.com/vercel/turborepo/pull/2279)
- publish 1.6.0-canary.3 to registry by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2287](https://togithub.com/vercel/turborepo/pull/2287)
- Write root inference in Go. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2283](https://togithub.com/vercel/turborepo/pull/2283)
- Merge release branch staging-1.6.0-canary.4 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2289](https://togithub.com/vercel/turborepo/pull/2289)
- Include the argument separator for dotenv. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2292](https://togithub.com/vercel/turborepo/pull/2292)
- Fix typo in monorepo docs by
[@&#8203;benjervis](https://togithub.com/benjervis) in
[https://github.com/vercel/turborepo/pull/2290](https://togithub.com/vercel/turborepo/pull/2290)

#### New Contributors

- [@&#8203;evliu](https://togithub.com/evliu) made their first
contribution in
[https://github.com/vercel/turborepo/pull/2164](https://togithub.com/vercel/turborepo/pull/2164)
- [@&#8203;blake-mealey](https://togithub.com/blake-mealey) made their
first contribution in
[https://github.com/vercel/turborepo/pull/2179](https://togithub.com/vercel/turborepo/pull/2179)
- [@&#8203;erikhofer](https://togithub.com/erikhofer) made their first
contribution in
[https://github.com/vercel/turborepo/pull/2225](https://togithub.com/vercel/turborepo/pull/2225)
- [@&#8203;adarshaacharya](https://togithub.com/adarshaacharya) made
their first contribution in
[https://github.com/vercel/turborepo/pull/2228](https://togithub.com/vercel/turborepo/pull/2228)
- [@&#8203;MateoKruk](https://togithub.com/MateoKruk) made their first
contribution in
[https://github.com/vercel/turborepo/pull/2240](https://togithub.com/vercel/turborepo/pull/2240)
- [@&#8203;rgomezcasas](https://togithub.com/rgomezcasas) made their
first contribution in
[https://github.com/vercel/turborepo/pull/2209](https://togithub.com/vercel/turborepo/pull/2209)
- [@&#8203;benjervis](https://togithub.com/benjervis) made their first
contribution in
[https://github.com/vercel/turborepo/pull/2290](https://togithub.com/vercel/turborepo/pull/2290)

**Full Changelog**:
vercel/turborepo@v1.5.5...v1.6.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/DeFiCh/metachain).

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fuxingloh referenced this pull request in levaintech/sticky Oct 31, 2022
[![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://turborepo.org)
([source](https://togithub.com/vercel/turbo)) | [`1.5.6` ->
`1.6.2`](https://renovatebot.com/diffs/npm/turbo/1.5.6/1.6.2) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.6.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.6.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.6.2/compatibility-slim/1.5.6)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.6.2/confidence-slim/1.5.6)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

###
[`v1.6.2`](https://togithub.com/vercel/turbo/compare/v1.6.1...v1.6.2)

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

###
[`v1.6.1`](https://togithub.com/vercel/turbo/compare/v1.6.0...v1.6.1)

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

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

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

#### What's Changed

- seo: Add script to generate RSS feed.xml to docs site by
[@&#8203;jaredpalmer](https://togithub.com/jaredpalmer) in
[https://github.com/vercel/turborepo/pull/2132](https://togithub.com/vercel/turborepo/pull/2132)
- Turbo-specific changes to build containers by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/1930](https://togithub.com/vercel/turborepo/pull/1930)
- docs: Tweak tracking in card headers by
[@&#8203;jaredpalmer](https://togithub.com/jaredpalmer) in
[https://github.com/vercel/turborepo/pull/2133](https://togithub.com/vercel/turborepo/pull/2133)
- Change some variable names by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2136](https://togithub.com/vercel/turborepo/pull/2136)
- chore(deps): update dependency
[@&#8203;babel/core](https://togithub.com/babel/core) to v7.19.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2127](https://togithub.com/vercel/turborepo/pull/2127)
- fix: Glob negation in outputs by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turborepo/pull/2031](https://togithub.com/vercel/turborepo/pull/2031)
- Use unix:path to address unix socket by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2137](https://togithub.com/vercel/turborepo/pull/2137)
- Fix broken links on "Workspace" Doc by
[@&#8203;pakaponk](https://togithub.com/pakaponk) in
[https://github.com/vercel/turborepo/pull/2141](https://togithub.com/vercel/turborepo/pull/2141)
- Use Warn method for logWarning by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2135](https://togithub.com/vercel/turborepo/pull/2135)
- chore(deps): update dependency postcss to v8.4.17 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2144](https://togithub.com/vercel/turborepo/pull/2144)
- chore(deps): update dependency typescript to v4.8.4 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2128](https://togithub.com/vercel/turborepo/pull/2128)
- fix(deps): update dependency ts-json-schema-generator to v1.1.2 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2139](https://togithub.com/vercel/turborepo/pull/2139)
- fix(packages): add repo, directory, and bugs fields by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2161](https://togithub.com/vercel/turborepo/pull/2161)
- feat: prune support for lockfiles containing patches by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2151](https://togithub.com/vercel/turborepo/pull/2151)
- Remove prefixes from stored logs by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2126](https://togithub.com/vercel/turborepo/pull/2126)
- fix: filename for web depending on ui by
[@&#8203;evliu](https://togithub.com/evliu) in
[https://github.com/vercel/turborepo/pull/2164](https://togithub.com/vercel/turborepo/pull/2164)
- seo: Fix 404s from search console by
[@&#8203;jaredpalmer](https://togithub.com/jaredpalmer) in
[https://github.com/vercel/turborepo/pull/2166](https://togithub.com/vercel/turborepo/pull/2166)
- seo: set canonical urls by
[@&#8203;jaredpalmer](https://togithub.com/jaredpalmer) in
[https://github.com/vercel/turborepo/pull/2168](https://togithub.com/vercel/turborepo/pull/2168)
- Turn off golang dependency auto updates by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2156](https://togithub.com/vercel/turborepo/pull/2156)
- feat: Avoid panic from lockfile issues by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2163](https://togithub.com/vercel/turborepo/pull/2163)
- feat(docs): add sentry by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2169](https://togithub.com/vercel/turborepo/pull/2169)
- Caching, but to tar files. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/1991](https://togithub.com/vercel/turborepo/pull/1991)
- fix handling of injected dependencies for pnpm prune by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2121](https://togithub.com/vercel/turborepo/pull/2121)
- Remove INFO prefix from log line by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2171](https://togithub.com/vercel/turborepo/pull/2171)
- Update examples to always quote the ESLint glob. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2130](https://togithub.com/vercel/turborepo/pull/2130)
- chore(examples): migrate svelte to latest by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2173](https://togithub.com/vercel/turborepo/pull/2173)
- Fix usage of uninitialized Ui instance by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2172](https://togithub.com/vercel/turborepo/pull/2172)
- fix(examples): correct turbo caching for storybook by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2176](https://togithub.com/vercel/turborepo/pull/2176)
- Revert "Caching, but to tar files." by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2178](https://togithub.com/vercel/turborepo/pull/2178)
- support new paused status by
[@&#8203;blake-mealey](https://togithub.com/blake-mealey) in
[https://github.com/vercel/turborepo/pull/2179](https://togithub.com/vercel/turborepo/pull/2179)
- docs: Fix Pipeline API design link by
[@&#8203;brunojppb](https://togithub.com/brunojppb) in
[https://github.com/vercel/turborepo/pull/2153](https://togithub.com/vercel/turborepo/pull/2153)
- Use two stage release process, plus diamond workflow for
cross-compiling by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2051](https://togithub.com/vercel/turborepo/pull/2051)
- fix(examples): correct react-native ui output by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2181](https://togithub.com/vercel/turborepo/pull/2181)
- Merge release branch staging-1.5.6-canary.2 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2182](https://togithub.com/vercel/turborepo/pull/2182)
- Add back bin/ directory by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2184](https://togithub.com/vercel/turborepo/pull/2184)
- Merge release branch staging-1.5.6-canary.3 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2185](https://togithub.com/vercel/turborepo/pull/2185)
- Merge release branch staging-1.5.6-canary.4 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2186](https://togithub.com/vercel/turborepo/pull/2186)
- feat(examples): add custom ignore script by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2183](https://togithub.com/vercel/turborepo/pull/2183)
- Added explainer on environment variables by
[@&#8203;mattpocock](https://togithub.com/mattpocock) in
[https://github.com/vercel/turborepo/pull/2115](https://togithub.com/vercel/turborepo/pull/2115)
- Merge release branch staging-1.5.6 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2193](https://togithub.com/vercel/turborepo/pull/2193)
- Fix leaving .turbo-cookie around by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2180](https://togithub.com/vercel/turborepo/pull/2180)
- fix(examples): cache .vercel for adapter-vercel by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2191](https://togithub.com/vercel/turborepo/pull/2191)
- fix(turbo): add new docs env vars by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2202](https://togithub.com/vercel/turborepo/pull/2202)
- cache-to-.tar.zst by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2195](https://togithub.com/vercel/turborepo/pull/2195)
- feat(cli): log auto included envs and framework by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2201](https://togithub.com/vercel/turborepo/pull/2201)
- feat(cli): global defaults for filters by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2211](https://togithub.com/vercel/turborepo/pull/2211)
- Show branch name rather than commit by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2214](https://togithub.com/vercel/turborepo/pull/2214)
- feature(shim): Merge shim directory by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turborepo/pull/2210](https://togithub.com/vercel/turborepo/pull/2210)
- feat: Enable sub-lockfile hashing for package mangers other than yarn
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2216](https://togithub.com/vercel/turborepo/pull/2216)
- chore(cli): support cobra completion command by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2217](https://togithub.com/vercel/turborepo/pull/2217)
- fix(deps): update rust crate anyhow to 1.0.65 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2219](https://togithub.com/vercel/turborepo/pull/2219)
- fix(examples): fix inconsistent package naming in with-changesets
example by [@&#8203;erikhofer](https://togithub.com/erikhofer) in
[https://github.com/vercel/turborepo/pull/2225](https://togithub.com/vercel/turborepo/pull/2225)
- Merge release branch staging-1.5.7-canary.0 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2226](https://togithub.com/vercel/turborepo/pull/2226)
- feat: Add npm support for prune by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2203](https://togithub.com/vercel/turborepo/pull/2203)
- feat(examples): update docker file to install libc6-compact by
[@&#8203;adarshaacharya](https://togithub.com/adarshaacharya) in
[https://github.com/vercel/turborepo/pull/2228](https://togithub.com/vercel/turborepo/pull/2228)
- Add note about glibc in alpine docker environments by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2212](https://togithub.com/vercel/turborepo/pull/2212)
- chore(docs): update nextra to fix anchor bug by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/2229](https://togithub.com/vercel/turborepo/pull/2229)
- Build shim locally, along with libturbo.a by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2218](https://togithub.com/vercel/turborepo/pull/2218)
- Mark no-daemon as publicly visible by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2231](https://togithub.com/vercel/turborepo/pull/2231)
- Drop unused dependency on cache location by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turborepo/pull/2233](https://togithub.com/vercel/turborepo/pull/2233)
- Remove deprecated flags. Test safety. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2205](https://togithub.com/vercel/turborepo/pull/2205)
- Improve type in e2e test script by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2155](https://togithub.com/vercel/turborepo/pull/2155)
- chore(deps): update pnpm/action-setup action to v2.2.3 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2236](https://togithub.com/vercel/turborepo/pull/2236)
- chore(deps): update dependency postcss to v8.4.18 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2243](https://togithub.com/vercel/turborepo/pull/2243)
- Add Agrotoken to showcase by
[@&#8203;MateoKruk](https://togithub.com/MateoKruk) in
[https://github.com/vercel/turborepo/pull/2240](https://togithub.com/vercel/turborepo/pull/2240)
- fix(shim): help flag on shim by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turborepo/pull/2252](https://togithub.com/vercel/turborepo/pull/2252)
- docs(ci): use current checkout and setup-node versions by
[@&#8203;rgomezcasas](https://togithub.com/rgomezcasas) in
[https://github.com/vercel/turborepo/pull/2209](https://togithub.com/vercel/turborepo/pull/2209)
- Delete unused run-examples script by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2125](https://togithub.com/vercel/turborepo/pull/2125)
- Merge release branch staging-1.6.0-canary.0 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2261](https://togithub.com/vercel/turborepo/pull/2261)
- Save file that keeps autoformatting on its own by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2257](https://togithub.com/vercel/turborepo/pull/2257)
- fix: vendor go-yaml by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/2227](https://togithub.com/vercel/turborepo/pull/2227)
- Fix heading level for CLI option in docs by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2235](https://togithub.com/vercel/turborepo/pull/2235)
- Consolidate engine, taskGraph, and scheduler naming to Engine by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2256](https://togithub.com/vercel/turborepo/pull/2256)
- Rename struct to be more accurate by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turborepo/pull/2268](https://togithub.com/vercel/turborepo/pull/2268)
- Ensure that the Engines field parses correctly. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2272](https://togithub.com/vercel/turborepo/pull/2272)
- Merge release branch staging-1.6.0-canary.1 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2273](https://togithub.com/vercel/turborepo/pull/2273)
- fix(deps): update rust crate serde_json to 1.0.86 by
[@&#8203;renovate](https://togithub.com/renovate) in
[https://github.com/vercel/turborepo/pull/2237](https://togithub.com/vercel/turborepo/pull/2237)
- Update help text by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2278](https://togithub.com/vercel/turborepo/pull/2278)
- fix(shim): Fixed version flag by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turborepo/pull/2276](https://togithub.com/vercel/turborepo/pull/2276)
- Start on a shim release process by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2274](https://togithub.com/vercel/turborepo/pull/2274)
- publish 1.6.0-canary.2 to registry by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2279](https://togithub.com/vercel/turborepo/pull/2279)
- publish 1.6.0-canary.3 to registry by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2287](https://togithub.com/vercel/turborepo/pull/2287)
- Write root inference in Go. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2283](https://togithub.com/vercel/turborepo/pull/2283)
- Merge release branch staging-1.6.0-canary.4 by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2289](https://togithub.com/vercel/turborepo/pull/2289)
- Include the argument separator for dotenv. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turborepo/pull/2292](https://togithub.com/vercel/turborepo/pull/2292)
- Fix typo in monorepo docs by
[@&#8203;benjervis](https://togithub.com/benjervis) in
[https://github.com/vercel/turborepo/pull/2290](https://togithub.com/vercel/turborepo/pull/2290)

#### New Contributors

- [@&#8203;evliu](https://togithub.com/evliu) made their first
contribution in
[https://github.com/vercel/turborepo/pull/2164](https://togithub.com/vercel/turborepo/pull/2164)
- [@&#8203;blake-mealey](https://togithub.com/blake-mealey) made their
first contribution in
[https://github.com/vercel/turborepo/pull/2179](https://togithub.com/vercel/turborepo/pull/2179)
- [@&#8203;erikhofer](https://togithub.com/erikhofer) made their first
contribution in
[https://github.com/vercel/turborepo/pull/2225](https://togithub.com/vercel/turborepo/pull/2225)
- [@&#8203;adarshaacharya](https://togithub.com/adarshaacharya) made
their first contribution in
[https://github.com/vercel/turborepo/pull/2228](https://togithub.com/vercel/turborepo/pull/2228)
- [@&#8203;MateoKruk](https://togithub.com/MateoKruk) made their first
contribution in
[https://github.com/vercel/turborepo/pull/2240](https://togithub.com/vercel/turborepo/pull/2240)
- [@&#8203;rgomezcasas](https://togithub.com/rgomezcasas) made their
first contribution in
[https://github.com/vercel/turborepo/pull/2209](https://togithub.com/vercel/turborepo/pull/2209)
- [@&#8203;benjervis](https://togithub.com/benjervis) made their first
contribution in
[https://github.com/vercel/turborepo/pull/2290](https://togithub.com/vercel/turborepo/pull/2290)

**Full Changelog**:
vercel/turborepo@v1.5.5...v1.6.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/BirthdayResearch/sticky).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yNDEuNyIsInVwZGF0ZWRJblZlciI6IjM0LjkuMSJ9-->

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

Successfully merging this pull request may close these issues.

3 participants