-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
Always include package.json in hash #1832
Always include package.json in hash #1832
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
e6df3eb
to
3655809
Compare
3655809
to
0dc80db
Compare
While working on another task (#1832), I found several things hard to read because of short variable names. Although types and "Go to Definition" helps in these cases, long function blocks and large files make it dfficult to focus on the task at hand. For example, in some cases, the variable `ht` and `th` appear side by side in the same block! This commit replaces some of these names to improve general readability (and also to reduce the diff in future behavior-changing work).
0dc80db
to
8acc5ef
Compare
8acc5ef
to
fe1bef1
Compare
I spent some time thinking about how to write an e2e test for this, but other than a full One way to test this change is how I've ben doing it locally with https://github.com/mehulkar/simplest-turbo (although you'll have to update |
ef8f37a
to
7d05ba4
Compare
// the package.json change (i.e. the tasks that turbo executes), we want | ||
// a cache miss, since any existing cache could be invalid. | ||
// Note this package.json will be resolved relative to the pkgPath. | ||
p.InputPatterns = append(p.InputPatterns, "package.json") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is mutating the InputPatterns
slice which is explicitly user input. For the inputs into our hash I'd prefer not to mutate the user input (so that we maintain that) and instead create a new slice that has the appended data.
e.g.:
calculatedInputs := make([]string, len(p.InputPatterns) + 1)
And then to populate:
for index, glob := range p.InputPatterns {
calculatedInputs[index] = glob
}
calculatedInputs = append(calculatedInputs, "package.json")
We can also use take this opportunity to make sure we don't duplicate user-provided input patterns. globby
actually has a weird side effect where it will return multiples for matches of different patterns. We run it through a set to dedupe for outputs
but I'm not actually sure we do it for input patterns so we should take this opportunity to check to make sure that we're properly deduping the glob matches for inputs.
Also worth noting that append
has one possibly surprising API footgun:
https://go.dev/play/p/qdmfQa8mSyy
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good idea. check out the latest commit and let me know if I've hit any footguns
Re testing: |
That's already there I think, unless I'm not understanding you https://github.com/vercel/turborepo/pull/1832/files#diff-9cc16f6cf68f549b9b0d39b005f2757d5c9be1b92b366f436f9ccf0684a7f68dR265 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I believe you've got enough feedback to ship this thing. Do so once you're ready!
// appends an item into a copy of an array to prevent mutating the original. | ||
// uses generics to take an array of any type and append an item of the same type. | ||
func copyAndAppend[K comparable](input []K, item K) []K { | ||
output := make([]K, len(input)) | ||
|
||
for index, item := range input { | ||
fmt.Printf("adding %#v at index %#v\n", item, index) | ||
output[index] = item | ||
} | ||
|
||
output = append(output, item) | ||
return output | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We've explicitly not adopted generics yet because of golang/go#48525. That issue is wrapping up so we can expect to upgrade Go and allow generics soon.
I'm super-excited to adopt them; but unfortunately, not yet.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ahh too bad, I was excited to learn them. Backed out and will read that issue to understand it more, thanks for the pointer!
output := make([]K, len(input)) | ||
|
||
for index, item := range input { | ||
fmt.Printf("adding %#v at index %#v\n", item, index) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should avoid logging in utility functions generally.
packageJSONPath := myPkgDir.Join("package.json") | ||
err = packageJSONPath.WriteFile([]byte("{}"), 0644) | ||
assert.NilError(t, err, "WriteFile") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Did I miss seeing this last time because of single commit mode or inattentiveness? I'm sorry.
|
||
// appends an item into a copy of an array to prevent mutating the original. | ||
// uses generics to take an array of any type and append an item of the same type. | ||
func copyAndAppend[K comparable](input []K, item K) []K { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
copyAndAppend
is a bit too clever for Go.
Couple of things:
- I'm sorry, I forgot about
copy
, I'm usually doing a transformation of the slice contents along the way or pulling them out of a map. This case is different which leavescopy
available. - Even if there weren't
copy
Go loves verbosity so I generally would choose acopy
thenappend
pattern.
a := []int{1, 2, 3}
b := make([]int, len(a))
copy(b, a)
b = append(b, 6)
b[1] = 5
fmt.Printf("a: %v b: %v", a, b)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
inlined, but chose to always copy the input, rather than conditionally. hope that's ok
We want to include each workspace's package.json as an input when the user has configured a smaller set of inputs, because the package.json defines the actual task turbo will execute for that workspace (via scripts). If that task definition changes, the cache is invalid. We only apply this inclusion when inputs are defined, because if inputs are not defined, all git-tracked files are included in the hash, which will also include the package.json file.
1412eb7
to
d6512cb
Compare
This PR documents #1832 now that we're releasing it. **Edit: Do not merge this until 1.4.7 is released** In doing so, I'm also changing the structure of the docs to separate env and files, which also needs to happen for #1936. One intermediate unfortunate side effect is that the docs, for some time until #1936 is merged, will document `globalDependencies` separately in two sections. This may be a little confusing during this time frame.
[![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://github.com/vercel/turborepo)) | [`^1.4.6` -> `^1.4.7`](https://renovatebot.com/diffs/npm/turbo/1.4.6/1.4.7) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.4.7/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.4.7/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.4.7/compatibility-slim/1.4.6)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.4.7/confidence-slim/1.4.6)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/turborepo</summary> ### [`v1.4.7`](https://github.com/vercel/turborepo/releases/tag/v1.4.7) [Compare Source](https://github.com/vercel/turborepo/compare/v1.4.6...v1.4.7) #### What's Changed - Add degit instructions for all examples by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1884](https://github.com/vercel/turborepo/pull/1884) - chore(turbo-ignore): add console message of an unfriendly error by [@​t-i-0414](https://github.com/t-i-0414) in [https://github.com/vercel/turborepo/pull/1871](https://github.com/vercel/turborepo/pull/1871) - Rewrote filtering workspaces docs by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1879](https://github.com/vercel/turborepo/pull/1879) - fix(deps): update dependency swr to v1.3.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1876](https://github.com/vercel/turborepo/pull/1876) - Rewrote pipelines, caching and remote caching docs by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1758](https://github.com/vercel/turborepo/pull/1758) - Reorganised pipeline docs with clearer headings, groupings and content by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1866](https://github.com/vercel/turborepo/pull/1866) - feat(ignore): check for turbo force by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1886](https://github.com/vercel/turborepo/pull/1886) - Fixed typo on remote caching page by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1889](https://github.com/vercel/turborepo/pull/1889) - Fixed redirect by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1888](https://github.com/vercel/turborepo/pull/1888) - Try out cram/prysk for CLI integration testing by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1829](https://github.com/vercel/turborepo/pull/1829) - (Controversial) Removed glossary and mentions of topological from the docs by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1868](https://github.com/vercel/turborepo/pull/1868) - feat: Add pnpm support for turbo prune by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/1819](https://github.com/vercel/turborepo/pull/1819) - Always include package.json in hash by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1832](https://github.com/vercel/turborepo/pull/1832) - chore(deps): update dependency [@​babel/core](https://github.com/babel/core) to v7.19.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1905](https://github.com/vercel/turborepo/pull/1905) - added code-shaper to code generation tools by [@​nareshbhatia](https://github.com/nareshbhatia) in [https://github.com/vercel/turborepo/pull/1909](https://github.com/vercel/turborepo/pull/1909) - added code-shaper to the code generation intro line by [@​nareshbhatia](https://github.com/nareshbhatia) in [https://github.com/vercel/turborepo/pull/1915](https://github.com/vercel/turborepo/pull/1915) - docs(examples/design-system): update readme by [@​theurgi](https://github.com/theurgi) in [https://github.com/vercel/turborepo/pull/1910](https://github.com/vercel/turborepo/pull/1910) - Finish port to cobra by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1792](https://github.com/vercel/turborepo/pull/1792) - chore(examples): clean with-next list by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1923](https://github.com/vercel/turborepo/pull/1923) - chore(examples): add comment for maintainability by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1927](https://github.com/vercel/turborepo/pull/1927) - Refactor reading turbo.json and add test cases by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1929](https://github.com/vercel/turborepo/pull/1929) - Re-jigged the landing and getting started pages by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1901](https://github.com/vercel/turborepo/pull/1901) - Upgrade Nextra by [@​shuding](https://github.com/shuding) in [https://github.com/vercel/turborepo/pull/1942](https://github.com/vercel/turborepo/pull/1942) - Enable inputs to be relative again. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1937](https://github.com/vercel/turborepo/pull/1937) - chore(deps): update dependency typescript to v4.8.3 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1934](https://github.com/vercel/turborepo/pull/1934) - fix(deps): update dependency eslint-plugin-react to v7.31.8 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1935](https://github.com/vercel/turborepo/pull/1935) - Removed bg circles to improve Safari perf by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1944](https://github.com/vercel/turborepo/pull/1944) - Made front-page title pink by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1945](https://github.com/vercel/turborepo/pull/1945) - chore(example): upgrade kitchen sink example by [@​ruisaraiva19](https://github.com/ruisaraiva19) in [https://github.com/vercel/turborepo/pull/1076](https://github.com/vercel/turborepo/pull/1076) - Import goreleaser cross by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1925](https://github.com/vercel/turborepo/pull/1925) - Turbo has more help text now, update test by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1931](https://github.com/vercel/turborepo/pull/1931) - fix(with-tailwind): dev script fails to build tailwindcss by [@​yanmao-cc](https://github.com/yanmao-cc) in [https://github.com/vercel/turborepo/pull/1898](https://github.com/vercel/turborepo/pull/1898) - fix(docs): update nextra by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1948](https://github.com/vercel/turborepo/pull/1948) - Use correct flag for graphviz version by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1954](https://github.com/vercel/turborepo/pull/1954) - Add mutex around helper cleanups by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1947](https://github.com/vercel/turborepo/pull/1947) - docs(running tasks): explicit instruction for workspace tasks by [@​mauricekleine](https://github.com/mauricekleine) in [https://github.com/vercel/turborepo/pull/1922](https://github.com/vercel/turborepo/pull/1922) - Reconcile cram tests and help text by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1956](https://github.com/vercel/turborepo/pull/1956) - chore(deps): update nextjs monorepo to v12.3.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1960](https://github.com/vercel/turborepo/pull/1960) - switch over to use go-yarnlock for yarn.lock parsing by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/1893](https://github.com/vercel/turborepo/pull/1893) - Improve CI setup by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1904](https://github.com/vercel/turborepo/pull/1904) - No shallow checkout for linting. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1972](https://github.com/vercel/turborepo/pull/1972) - Add ability to declare a env key in each pipeline task by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1970](https://github.com/vercel/turborepo/pull/1970) - Add ability to define a globalEnv key in turbo.json by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1950](https://github.com/vercel/turborepo/pull/1950) - Show outputModeTable in CLI and config docs by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1949](https://github.com/vercel/turborepo/pull/1949) - fix: Support pnpm patches in prune by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/1967](https://github.com/vercel/turborepo/pull/1967) - Update showcase images by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/1986](https://github.com/vercel/turborepo/pull/1986) - Add vimeo to showcase by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/1987](https://github.com/vercel/turborepo/pull/1987) #### New Contributors - [@​t-i-0414](https://github.com/t-i-0414) made their first contribution in [https://github.com/vercel/turborepo/pull/1871](https://github.com/vercel/turborepo/pull/1871) - [@​nareshbhatia](https://github.com/nareshbhatia) made their first contribution in [https://github.com/vercel/turborepo/pull/1909](https://github.com/vercel/turborepo/pull/1909) - [@​theurgi](https://github.com/theurgi) made their first contribution in [https://github.com/vercel/turborepo/pull/1910](https://github.com/vercel/turborepo/pull/1910) - [@​ruisaraiva19](https://github.com/ruisaraiva19) made their first contribution in [https://github.com/vercel/turborepo/pull/1076](https://github.com/vercel/turborepo/pull/1076) - [@​yanmao-cc](https://github.com/yanmao-cc) made their first contribution in [https://github.com/vercel/turborepo/pull/1898](https://github.com/vercel/turborepo/pull/1898) - [@​mauricekleine](https://github.com/mauricekleine) made their first contribution in [https://github.com/vercel/turborepo/pull/1922](https://github.com/vercel/turborepo/pull/1922) **Full Changelog**: vercel/turborepo@v1.4.6...v1.4.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, 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:eyJjcmVhdGVkSW5WZXIiOiIzMi4xOTUuNSIsInVwZGF0ZWRJblZlciI6IjMyLjE5NS41In0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![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://github.com/vercel/turborepo)) | [`^1.4.6` -> `^1.5.6`](https://renovatebot.com/diffs/npm/turbo/1.4.6/1.5.6) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.5.6/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.5.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.5.6/compatibility-slim/1.4.6)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.5.6/confidence-slim/1.4.6)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/turborepo</summary> ### [`v1.5.6`](https://github.com/vercel/turborepo/releases/tag/v1.5.6) [Compare Source](https://github.com/vercel/turborepo/compare/v1.5.5...v1.5.6) Note that this release enables `CGO` for all targets #### What's Changed - seo: Add script to generate RSS feed.xml to docs site by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/2132](https://github.com/vercel/turborepo/pull/2132) - Turbo-specific changes to build containers by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1930](https://github.com/vercel/turborepo/pull/1930) - docs: Tweak tracking in card headers by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/2133](https://github.com/vercel/turborepo/pull/2133) - Change some variable names by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/2136](https://github.com/vercel/turborepo/pull/2136) - chore(deps): update dependency [@​babel/core](https://github.com/babel/core) to v7.19.3 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/2127](https://github.com/vercel/turborepo/pull/2127) - fix: Glob negation in outputs by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/2031](https://github.com/vercel/turborepo/pull/2031) - Use unix:path to address unix socket by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2137](https://github.com/vercel/turborepo/pull/2137) - Fix broken links on "Workspace" Doc by [@​pakaponk](https://github.com/pakaponk) in [https://github.com/vercel/turborepo/pull/2141](https://github.com/vercel/turborepo/pull/2141) - Use Warn method for logWarning by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/2135](https://github.com/vercel/turborepo/pull/2135) - chore(deps): update dependency postcss to v8.4.17 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/2144](https://github.com/vercel/turborepo/pull/2144) - chore(deps): update dependency typescript to v4.8.4 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/2128](https://github.com/vercel/turborepo/pull/2128) - fix(deps): update dependency ts-json-schema-generator to v1.1.2 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/2139](https://github.com/vercel/turborepo/pull/2139) - fix(packages): add repo, directory, and bugs fields by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2161](https://github.com/vercel/turborepo/pull/2161) - feat: prune support for lockfiles containing patches by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/2151](https://github.com/vercel/turborepo/pull/2151) - Remove prefixes from stored logs by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/2126](https://github.com/vercel/turborepo/pull/2126) - fix: filename for web depending on ui by [@​evliu](https://github.com/evliu) in [https://github.com/vercel/turborepo/pull/2164](https://github.com/vercel/turborepo/pull/2164) - seo: Fix 404s from search console by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/2166](https://github.com/vercel/turborepo/pull/2166) - seo: set canonical urls by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/2168](https://github.com/vercel/turborepo/pull/2168) - Turn off golang dependency auto updates by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/2156](https://github.com/vercel/turborepo/pull/2156) - feat: Avoid panic from lockfile issues by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/2163](https://github.com/vercel/turborepo/pull/2163) - feat(docs): add sentry by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2169](https://github.com/vercel/turborepo/pull/2169) - Caching, but to tar files. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1991](https://github.com/vercel/turborepo/pull/1991) - fix handling of injected dependencies for pnpm prune by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/2121](https://github.com/vercel/turborepo/pull/2121) - Remove INFO prefix from log line by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2171](https://github.com/vercel/turborepo/pull/2171) - Update examples to always quote the ESLint glob. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/2130](https://github.com/vercel/turborepo/pull/2130) - chore(examples): migrate svelte to latest by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2173](https://github.com/vercel/turborepo/pull/2173) - Fix usage of uninitialized Ui instance by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2172](https://github.com/vercel/turborepo/pull/2172) - fix(examples): correct turbo caching for storybook by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2176](https://github.com/vercel/turborepo/pull/2176) - Revert "Caching, but to tar files." by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2178](https://github.com/vercel/turborepo/pull/2178) - support new paused status by [@​blake-mealey](https://github.com/blake-mealey) in [https://github.com/vercel/turborepo/pull/2179](https://github.com/vercel/turborepo/pull/2179) - docs: Fix Pipeline API design link by [@​brunojppb](https://github.com/brunojppb) in [https://github.com/vercel/turborepo/pull/2153](https://github.com/vercel/turborepo/pull/2153) - Use two stage release process, plus diamond workflow for cross-compiling by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2051](https://github.com/vercel/turborepo/pull/2051) - fix(examples): correct react-native ui output by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2181](https://github.com/vercel/turborepo/pull/2181) - Add back bin/ directory by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2184](https://github.com/vercel/turborepo/pull/2184) - feat(examples): add custom ignore script by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2183](https://github.com/vercel/turborepo/pull/2183) - Added explainer on environment variables by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/2115](https://github.com/vercel/turborepo/pull/2115) #### New Contributors - [@​evliu](https://github.com/evliu) made their first contribution in [https://github.com/vercel/turborepo/pull/2164](https://github.com/vercel/turborepo/pull/2164) - [@​blake-mealey](https://github.com/blake-mealey) made their first contribution in [https://github.com/vercel/turborepo/pull/2179](https://github.com/vercel/turborepo/pull/2179) **Full Changelog**: vercel/turborepo@v1.5.5...v1.5.6 ### [`v1.5.5`](https://github.com/vercel/turborepo/releases/tag/v1.5.5) [Compare Source](https://github.com/vercel/turborepo/compare/v1.5.4...v1.5.5) #### What's Changed - fix(fs): overwrite symlink in restore cache by [@​AielloChan](https://github.com/AielloChan) in [https://github.com/vercel/turborepo/pull/2016](https://github.com/vercel/turborepo/pull/2016) - seo: Add rewrite to turbo sitemap crawler by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/2106](https://github.com/vercel/turborepo/pull/2106) - Change Berry's `cacheKey` to be a string by [@​amitdahan](https://github.com/amitdahan) in [https://github.com/vercel/turborepo/pull/2102](https://github.com/vercel/turborepo/pull/2102) - Fix small typo by [@​arturcarvalho](https://github.com/arturcarvalho) in [https://github.com/vercel/turborepo/pull/2108](https://github.com/vercel/turborepo/pull/2108) - Add React Flow to showcase by [@​moklick](https://github.com/moklick) in [https://github.com/vercel/turborepo/pull/2107](https://github.com/vercel/turborepo/pull/2107) - Test that env vars dependencies are sorted consistently by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/2111](https://github.com/vercel/turborepo/pull/2111) - Extract the patch for `tar` by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/2116](https://github.com/vercel/turborepo/pull/2116) - Re-add log message about remote caching by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/2122](https://github.com/vercel/turborepo/pull/2122) - Temporarily disable daemon on windows by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2124](https://github.com/vercel/turborepo/pull/2124) #### New Contributors - [@​AielloChan](https://github.com/AielloChan) made their first contribution in [https://github.com/vercel/turborepo/pull/2016](https://github.com/vercel/turborepo/pull/2016) - [@​amitdahan](https://github.com/amitdahan) made their first contribution in [https://github.com/vercel/turborepo/pull/2102](https://github.com/vercel/turborepo/pull/2102) - [@​arturcarvalho](https://github.com/arturcarvalho) made their first contribution in [https://github.com/vercel/turborepo/pull/2108](https://github.com/vercel/turborepo/pull/2108) - [@​moklick](https://github.com/moklick) made their first contribution in [https://github.com/vercel/turborepo/pull/2107](https://github.com/vercel/turborepo/pull/2107) **Full Changelog**: vercel/turborepo@v1.5.4...v1.5.5 ### [`v1.5.4`](https://github.com/vercel/turborepo/compare/v1.5.3...v1.5.4) [Compare Source](https://github.com/vercel/turborepo/compare/v1.5.3...v1.5.4) ### [`v1.5.3`](https://github.com/vercel/turborepo/compare/v1.5.2...v1.5.3) [Compare Source](https://github.com/vercel/turborepo/compare/v1.5.2...v1.5.3) ### [`v1.5.2`](https://github.com/vercel/turborepo/compare/v1.5.1...v1.5.2) [Compare Source](https://github.com/vercel/turborepo/compare/v1.5.1...v1.5.2) ### [`v1.5.1`](https://github.com/vercel/turborepo/releases/tag/v1.5.1) [Compare Source](https://github.com/vercel/turborepo/compare/v1.5.0...v1.5.1) #### What's Changed - Drop no-longer-supported platform references by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2033](https://github.com/vercel/turborepo/pull/2033) - We can infer identifer, we don't need to specify it by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2032](https://github.com/vercel/turborepo/pull/2032) **Full Changelog**: vercel/turborepo@v1.5.0...v1.5.1 ### [`v1.5.0`](https://github.com/vercel/turborepo/releases/tag/v1.5.0) [Compare Source](https://github.com/vercel/turborepo/compare/v1.4.7...v1.5.0) #### What's Changed - Document inclusion of package.json in workspace task cache keys by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1955](https://github.com/vercel/turborepo/pull/1955) - Make run the default command by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1821](https://github.com/vercel/turborepo/pull/1821) - chore(deps): update dependency [@​types/react](https://github.com/types/react) to v17.0.50 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1980](https://github.com/vercel/turborepo/pull/1980) - chore(deps): update dependency [@​babel/core](https://github.com/babel/core) to v7.19.1 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1989](https://github.com/vercel/turborepo/pull/1989) - chore(deps): update dependency csstype to v3.1.1 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1981](https://github.com/vercel/turborepo/pull/1981) - fix(deps): update dependency react-hot-toast to v2.4.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1992](https://github.com/vercel/turborepo/pull/1992) - Drop unsupported platforms by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1903](https://github.com/vercel/turborepo/pull/1903) - fix(deps): update dependency classnames to v2.3.2 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1990](https://github.com/vercel/turborepo/pull/1990) - Wire up prysk and fix help flag by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2000](https://github.com/vercel/turborepo/pull/2000) - Enable turbod by default by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2001](https://github.com/vercel/turborepo/pull/2001) - Built monorepo handbook by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1881](https://github.com/vercel/turborepo/pull/1881) - Why turborepo images POC by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/2012](https://github.com/vercel/turborepo/pull/2012) - Added link to package installation by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/2009](https://github.com/vercel/turborepo/pull/2009) - Drop macos run of large benchmark on github actions. by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2003](https://github.com/vercel/turborepo/pull/2003) - Typo fix by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/2017](https://github.com/vercel/turborepo/pull/2017) - feat(types): add turbo types package by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2024](https://github.com/vercel/turborepo/pull/2024) - fix(deps): update dependency nextra to v2.0.0-beta.29 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/2008](https://github.com/vercel/turborepo/pull/2008) - chore(core): deprecation messages for legacy env keys by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1959](https://github.com/vercel/turborepo/pull/1959) - feat(codemod): migrate turbo.json dependsOn by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2022](https://github.com/vercel/turborepo/pull/2022) - feat: Add prune support for Yarn 3 by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/2019](https://github.com/vercel/turborepo/pull/2019) **Full Changelog**: vercel/turborepo@v1.4.7...v1.5.0 ### [`v1.4.7`](https://github.com/vercel/turborepo/releases/tag/v1.4.7) [Compare Source](https://github.com/vercel/turborepo/compare/v1.4.6...v1.4.7) #### What's Changed - Add degit instructions for all examples by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1884](https://github.com/vercel/turborepo/pull/1884) - chore(turbo-ignore): add console message of an unfriendly error by [@​t-i-0414](https://github.com/t-i-0414) in [https://github.com/vercel/turborepo/pull/1871](https://github.com/vercel/turborepo/pull/1871) - Rewrote filtering workspaces docs by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1879](https://github.com/vercel/turborepo/pull/1879) - fix(deps): update dependency swr to v1.3.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1876](https://github.com/vercel/turborepo/pull/1876) - Rewrote pipelines, caching and remote caching docs by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1758](https://github.com/vercel/turborepo/pull/1758) - Reorganised pipeline docs with clearer headings, groupings and content by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1866](https://github.com/vercel/turborepo/pull/1866) - feat(ignore): check for turbo force by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1886](https://github.com/vercel/turborepo/pull/1886) - Fixed typo on remote caching page by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1889](https://github.com/vercel/turborepo/pull/1889) - Fixed redirect by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1888](https://github.com/vercel/turborepo/pull/1888) - Try out cram/prysk for CLI integration testing by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1829](https://github.com/vercel/turborepo/pull/1829) - (Controversial) Removed glossary and mentions of topological from the docs by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1868](https://github.com/vercel/turborepo/pull/1868) - feat: Add pnpm support for turbo prune by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/1819](https://github.com/vercel/turborepo/pull/1819) - Always include package.json in hash by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1832](https://github.com/vercel/turborepo/pull/1832) - chore(deps): update dependency [@​babel/core](https://github.com/babel/core) to v7.19.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1905](https://github.com/vercel/turborepo/pull/1905) - added code-shaper to code generation tools by [@​nareshbhatia](https://github.com/nareshbhatia) in [https://github.com/vercel/turborepo/pull/1909](https://github.com/vercel/turborepo/pull/1909) - added code-shaper to the code generation intro line by [@​nareshbhatia](https://github.com/nareshbhatia) in [https://github.com/vercel/turborepo/pull/1915](https://github.com/vercel/turborepo/pull/1915) - docs(examples/design-system): update readme by [@​theurgi](https://github.com/theurgi) in [https://github.com/vercel/turborepo/pull/1910](https://github.com/vercel/turborepo/pull/1910) - Finish port to cobra by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1792](https://github.com/vercel/turborepo/pull/1792) - chore(examples): clean with-next list by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1923](https://github.com/vercel/turborepo/pull/1923) - chore(examples): add comment for maintainability by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1927](https://github.com/vercel/turborepo/pull/1927) - Refactor reading turbo.json and add test cases by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1929](https://github.com/vercel/turborepo/pull/1929) - Re-jigged the landing and getting started pages by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1901](https://github.com/vercel/turborepo/pull/1901) - Upgrade Nextra by [@​shuding](https://github.com/shuding) in [https://github.com/vercel/turborepo/pull/1942](https://github.com/vercel/turborepo/pull/1942) - Enable inputs to be relative again. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1937](https://github.com/vercel/turborepo/pull/1937) - chore(deps): update dependency typescript to v4.8.3 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1934](https://github.com/vercel/turborepo/pull/1934) - fix(deps): update dependency eslint-plugin-react to v7.31.8 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1935](https://github.com/vercel/turborepo/pull/1935) - Removed bg circles to improve Safari perf by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1944](https://github.com/vercel/turborepo/pull/1944) - Made front-page title pink by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1945](https://github.com/vercel/turborepo/pull/1945) - chore(example): upgrade kitchen sink example by [@​ruisaraiva19](https://github.com/ruisaraiva19) in [https://github.com/vercel/turborepo/pull/1076](https://github.com/vercel/turborepo/pull/1076) - Import goreleaser cross by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1925](https://github.com/vercel/turborepo/pull/1925) - Turbo has more help text now, update test by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1931](https://github.com/vercel/turborepo/pull/1931) - fix(with-tailwind): dev script fails to build tailwindcss by [@​yanmao-cc](https://github.com/yanmao-cc) in [https://github.com/vercel/turborepo/pull/1898](https://github.com/vercel/turborepo/pull/1898) - fix(docs): update nextra by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1948](https://github.com/vercel/turborepo/pull/1948) - Use correct flag for graphviz version by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1954](https://github.com/vercel/turborepo/pull/1954) - Add mutex around helper cleanups by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1947](https://github.com/vercel/turborepo/pull/1947) - docs(running tasks): explicit instruction for workspace tasks by [@​mauricekleine](https://github.com/mauricekleine) in [https://github.com/vercel/turborepo/pull/1922](https://github.com/vercel/turborepo/pull/1922) - Reconcile cram tests and help text by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1956](https://github.com/vercel/turborepo/pull/1956) - chore(deps): update nextjs monorepo to v12.3.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1960](https://github.com/vercel/turborepo/pull/1960) - switch over to use go-yarnlock for yarn.lock parsing by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/1893](https://github.com/vercel/turborepo/pull/1893) - Improve CI setup by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1904](https://github.com/vercel/turborepo/pull/1904) - No shallow checkout for linting. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1972](https://github.com/vercel/turborepo/pull/1972) - Add ability to declare a env key in each pipeline task by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1970](https://github.com/vercel/turborepo/pull/1970) - Add ability to define a globalEnv key in turbo.json by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1950](https://github.com/vercel/turborepo/pull/1950) - Show outputModeTable in CLI and config docs by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1949](https://github.com/vercel/turborepo/pull/1949) - fix: Support pnpm patches in prune by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/1967](https://github.com/vercel/turborepo/pull/1967) - Update showcase images by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/1986](https://github.com/vercel/turborepo/pull/1986) - Add vimeo to showcase by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/1987](https://github.com/vercel/turborepo/pull/1987) #### New Contributors - [@​t-i-0414](https://github.com/t-i-0414) made their first contribution in [https://github.com/vercel/turborepo/pull/1871](https://github.com/vercel/turborepo/pull/1871) - [@​nareshbhatia](https://github.com/nareshbhatia) made their first contribution in [https://github.com/vercel/turborepo/pull/1909](https://github.com/vercel/turborepo/pull/1909) - [@​theurgi](https://github.com/theurgi) made their first contribution in [https://github.com/vercel/turborepo/pull/1910](https://github.com/vercel/turborepo/pull/1910) - [@​ruisaraiva19](https://github.com/ruisaraiva19) made their first contribution in [https://github.com/vercel/turborepo/pull/1076](https://github.com/vercel/turborepo/pull/1076) - [@​yanmao-cc](https://github.com/yanmao-cc) made their first contribution in [https://github.com/vercel/turborepo/pull/1898](https://github.com/vercel/turborepo/pull/1898) - [@​mauricekleine](https://github.com/mauricekleine) made their first contribution in [https://github.com/vercel/turborepo/pull/1922](https://github.com/vercel/turborepo/pull/1922) **Full Changelog**: vercel/turborepo@v1.4.6...v1.4.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, 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/DeFiCh/metachain). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4yMTYuMCIsInVwZGF0ZWRJblZlciI6IjMyLjIzMi4wIn0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![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://github.com/vercel/turborepo)) | [`1.4.3` -> `1.5.6`](https://renovatebot.com/diffs/npm/turbo/1.4.3/1.5.6) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.5.6/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.5.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.5.6/compatibility-slim/1.4.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.5.6/confidence-slim/1.4.3)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/turborepo</summary> ### [`v1.5.6`](https://github.com/vercel/turborepo/releases/tag/v1.5.6) [Compare Source](https://github.com/vercel/turborepo/compare/v1.5.5...v1.5.6) Note that this release enables `CGO` for all targets #### What's Changed - seo: Add script to generate RSS feed.xml to docs site by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/2132](https://github.com/vercel/turborepo/pull/2132) - Turbo-specific changes to build containers by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1930](https://github.com/vercel/turborepo/pull/1930) - docs: Tweak tracking in card headers by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/2133](https://github.com/vercel/turborepo/pull/2133) - Change some variable names by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/2136](https://github.com/vercel/turborepo/pull/2136) - chore(deps): update dependency [@​babel/core](https://github.com/babel/core) to v7.19.3 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/2127](https://github.com/vercel/turborepo/pull/2127) - fix: Glob negation in outputs by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/2031](https://github.com/vercel/turborepo/pull/2031) - Use unix:path to address unix socket by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2137](https://github.com/vercel/turborepo/pull/2137) - Fix broken links on "Workspace" Doc by [@​pakaponk](https://github.com/pakaponk) in [https://github.com/vercel/turborepo/pull/2141](https://github.com/vercel/turborepo/pull/2141) - Use Warn method for logWarning by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/2135](https://github.com/vercel/turborepo/pull/2135) - chore(deps): update dependency postcss to v8.4.17 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/2144](https://github.com/vercel/turborepo/pull/2144) - chore(deps): update dependency typescript to v4.8.4 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/2128](https://github.com/vercel/turborepo/pull/2128) - fix(deps): update dependency ts-json-schema-generator to v1.1.2 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/2139](https://github.com/vercel/turborepo/pull/2139) - fix(packages): add repo, directory, and bugs fields by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2161](https://github.com/vercel/turborepo/pull/2161) - feat: prune support for lockfiles containing patches by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/2151](https://github.com/vercel/turborepo/pull/2151) - Remove prefixes from stored logs by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/2126](https://github.com/vercel/turborepo/pull/2126) - fix: filename for web depending on ui by [@​evliu](https://github.com/evliu) in [https://github.com/vercel/turborepo/pull/2164](https://github.com/vercel/turborepo/pull/2164) - seo: Fix 404s from search console by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/2166](https://github.com/vercel/turborepo/pull/2166) - seo: set canonical urls by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/2168](https://github.com/vercel/turborepo/pull/2168) - Turn off golang dependency auto updates by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/2156](https://github.com/vercel/turborepo/pull/2156) - feat: Avoid panic from lockfile issues by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/2163](https://github.com/vercel/turborepo/pull/2163) - feat(docs): add sentry by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2169](https://github.com/vercel/turborepo/pull/2169) - Caching, but to tar files. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1991](https://github.com/vercel/turborepo/pull/1991) - fix handling of injected dependencies for pnpm prune by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/2121](https://github.com/vercel/turborepo/pull/2121) - Remove INFO prefix from log line by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2171](https://github.com/vercel/turborepo/pull/2171) - Update examples to always quote the ESLint glob. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/2130](https://github.com/vercel/turborepo/pull/2130) - chore(examples): migrate svelte to latest by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2173](https://github.com/vercel/turborepo/pull/2173) - Fix usage of uninitialized Ui instance by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2172](https://github.com/vercel/turborepo/pull/2172) - fix(examples): correct turbo caching for storybook by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2176](https://github.com/vercel/turborepo/pull/2176) - Revert "Caching, but to tar files." by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2178](https://github.com/vercel/turborepo/pull/2178) - support new paused status by [@​blake-mealey](https://github.com/blake-mealey) in [https://github.com/vercel/turborepo/pull/2179](https://github.com/vercel/turborepo/pull/2179) - docs: Fix Pipeline API design link by [@​brunojppb](https://github.com/brunojppb) in [https://github.com/vercel/turborepo/pull/2153](https://github.com/vercel/turborepo/pull/2153) - Use two stage release process, plus diamond workflow for cross-compiling by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2051](https://github.com/vercel/turborepo/pull/2051) - fix(examples): correct react-native ui output by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2181](https://github.com/vercel/turborepo/pull/2181) - Add back bin/ directory by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2184](https://github.com/vercel/turborepo/pull/2184) - feat(examples): add custom ignore script by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2183](https://github.com/vercel/turborepo/pull/2183) - Added explainer on environment variables by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/2115](https://github.com/vercel/turborepo/pull/2115) #### New Contributors - [@​evliu](https://github.com/evliu) made their first contribution in [https://github.com/vercel/turborepo/pull/2164](https://github.com/vercel/turborepo/pull/2164) - [@​blake-mealey](https://github.com/blake-mealey) made their first contribution in [https://github.com/vercel/turborepo/pull/2179](https://github.com/vercel/turborepo/pull/2179) **Full Changelog**: https://github.com/vercel/turborepo/compare/v1.5.5...v1.5.6 ### [`v1.5.5`](https://github.com/vercel/turborepo/releases/tag/v1.5.5) [Compare Source](https://github.com/vercel/turborepo/compare/v1.5.4...v1.5.5) #### What's Changed - fix(fs): overwrite symlink in restore cache by [@​AielloChan](https://github.com/AielloChan) in [https://github.com/vercel/turborepo/pull/2016](https://github.com/vercel/turborepo/pull/2016) - seo: Add rewrite to turbo sitemap crawler by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/2106](https://github.com/vercel/turborepo/pull/2106) - Change Berry's `cacheKey` to be a string by [@​amitdahan](https://github.com/amitdahan) in [https://github.com/vercel/turborepo/pull/2102](https://github.com/vercel/turborepo/pull/2102) - Fix small typo by [@​arturcarvalho](https://github.com/arturcarvalho) in [https://github.com/vercel/turborepo/pull/2108](https://github.com/vercel/turborepo/pull/2108) - Add React Flow to showcase by [@​moklick](https://github.com/moklick) in [https://github.com/vercel/turborepo/pull/2107](https://github.com/vercel/turborepo/pull/2107) - Test that env vars dependencies are sorted consistently by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/2111](https://github.com/vercel/turborepo/pull/2111) - Extract the patch for `tar` by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/2116](https://github.com/vercel/turborepo/pull/2116) - Re-add log message about remote caching by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/2122](https://github.com/vercel/turborepo/pull/2122) - Temporarily disable daemon on windows by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2124](https://github.com/vercel/turborepo/pull/2124) #### New Contributors - [@​AielloChan](https://github.com/AielloChan) made their first contribution in [https://github.com/vercel/turborepo/pull/2016](https://github.com/vercel/turborepo/pull/2016) - [@​amitdahan](https://github.com/amitdahan) made their first contribution in [https://github.com/vercel/turborepo/pull/2102](https://github.com/vercel/turborepo/pull/2102) - [@​arturcarvalho](https://github.com/arturcarvalho) made their first contribution in [https://github.com/vercel/turborepo/pull/2108](https://github.com/vercel/turborepo/pull/2108) - [@​moklick](https://github.com/moklick) made their first contribution in [https://github.com/vercel/turborepo/pull/2107](https://github.com/vercel/turborepo/pull/2107) **Full Changelog**: https://github.com/vercel/turborepo/compare/v1.5.4...v1.5.5 ### [`v1.5.4`](https://github.com/vercel/turborepo/releases/tag/v1.5.4) [Compare Source](https://github.com/vercel/turborepo/compare/v1.5.3...v1.5.4) #### What's Changed - Drop log line breaking JSON dry-run output when remote caching is enabled by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2067](https://github.com/vercel/turborepo/pull/2067) - Use fmt.Sprintf where appropriate in logs by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2068](https://github.com/vercel/turborepo/pull/2068) - Fix typo by [@​morinokami](https://github.com/morinokami) in [https://github.com/vercel/turborepo/pull/2074](https://github.com/vercel/turborepo/pull/2074) - Add path types for cache. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/2059](https://github.com/vercel/turborepo/pull/2059) - fix(deps): update dependency ts-json-schema-generator to v1.1.1 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/2071](https://github.com/vercel/turborepo/pull/2071) - Fix: Docs Edit This Page Button not working by [@​fmcalado](https://github.com/fmcalado) in [https://github.com/vercel/turborepo/pull/2076](https://github.com/vercel/turborepo/pull/2076) - chore(docs): sections for `globalDependencies` and `globalEnv` by [@​QuiiBz](https://github.com/QuiiBz) in [https://github.com/vercel/turborepo/pull/2080](https://github.com/vercel/turborepo/pull/2080) - Add single-package mode and integration tests by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1979](https://github.com/vercel/turborepo/pull/1979) - fix(prune) respect dir permissions during prune by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/2066](https://github.com/vercel/turborepo/pull/2066) - Fix typo in docs by [@​davemaier](https://github.com/davemaier) in [https://github.com/vercel/turborepo/pull/2086](https://github.com/vercel/turborepo/pull/2086) - Path casts by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/2077](https://github.com/vercel/turborepo/pull/2077) - fix(prune): place workspace configuration file in json directory by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/2030](https://github.com/vercel/turborepo/pull/2030) - chore(deps): update nextjs monorepo to v12.3.1 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/2035](https://github.com/vercel/turborepo/pull/2035) - Turn down logging for the daemon by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2085](https://github.com/vercel/turborepo/pull/2085) - fix(docs): overflow on ` <Callout />` by [@​QuiiBz](https://github.com/QuiiBz) in [https://github.com/vercel/turborepo/pull/2082](https://github.com/vercel/turborepo/pull/2082) - chore(deps): update dependency autoprefixer to v10.4.12 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/2007](https://github.com/vercel/turborepo/pull/2007) - Update command line reference for prune by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/2087](https://github.com/vercel/turborepo/pull/2087) - Handle pnpm resolving a dependency to multiple versions by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2090](https://github.com/vercel/turborepo/pull/2090) #### New Contributors - [@​morinokami](https://github.com/morinokami) made their first contribution in [https://github.com/vercel/turborepo/pull/2074](https://github.com/vercel/turborepo/pull/2074) - [@​fmcalado](https://github.com/fmcalado) made their first contribution in [https://github.com/vercel/turborepo/pull/2076](https://github.com/vercel/turborepo/pull/2076) - [@​QuiiBz](https://github.com/QuiiBz) made their first contribution in [https://github.com/vercel/turborepo/pull/2080](https://github.com/vercel/turborepo/pull/2080) - [@​davemaier](https://github.com/davemaier) made their first contribution in [https://github.com/vercel/turborepo/pull/2086](https://github.com/vercel/turborepo/pull/2086) **Full Changelog**: https://github.com/vercel/turborepo/compare/v1.5.3...v1.5.4 ### [`v1.5.3`](https://github.com/vercel/turborepo/releases/tag/v1.5.3) [Compare Source](https://github.com/vercel/turborepo/compare/v1.5.2...v1.5.3) #### What's Changed - Update turbo-1-5-0.mdx by [@​cedric25](https://github.com/cedric25) in [https://github.com/vercel/turborepo/pull/2061](https://github.com/vercel/turborepo/pull/2061) - Add test to ensure relevant fields are sorted by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2064](https://github.com/vercel/turborepo/pull/2064) #### New Contributors - [@​cedric25](https://github.com/cedric25) made their first contribution in [https://github.com/vercel/turborepo/pull/2061](https://github.com/vercel/turborepo/pull/2061) **Full Changelog**: https://github.com/vercel/turborepo/compare/v1.5.2...v1.5.3 ### [`v1.5.2`](https://github.com/vercel/turborepo/releases/tag/v1.5.2) [Compare Source](https://github.com/vercel/turborepo/compare/v1.5.1...v1.5.2) #### What's Changed - Update docs on declaring env key dependencies by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1936](https://github.com/vercel/turborepo/pull/1936) - Rewrote option syntax to be more flexible (thanks Cobra) by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/2014](https://github.com/vercel/turborepo/pull/2014) - Added link to Why Turborepo from the quickstart by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/2015](https://github.com/vercel/turborepo/pull/2015) - Added documentation of deploying to docker to the handbook by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/2013](https://github.com/vercel/turborepo/pull/2013) - feat(eslint-plugin): add new configuration style by [@​iduuck](https://github.com/iduuck) in [https://github.com/vercel/turborepo/pull/2041](https://github.com/vercel/turborepo/pull/2041) - 1.5 blog by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1999](https://github.com/vercel/turborepo/pull/1999) - Slowdown the marquee by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/2046](https://github.com/vercel/turborepo/pull/2046) - feature: enhance dry-run with cache status by [@​sppatel](https://github.com/sppatel) in [https://github.com/vercel/turborepo/pull/1988](https://github.com/vercel/turborepo/pull/1988) - Fix up image directory and filenames by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/2047](https://github.com/vercel/turborepo/pull/2047) - Disable windows variant by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2048](https://github.com/vercel/turborepo/pull/2048) - fix: Add .turbo to .gitignore by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/2002](https://github.com/vercel/turborepo/pull/2002) - Combine AbsolutePath and AbsoluteSystemPath by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/2026](https://github.com/vercel/turborepo/pull/2026) - chore(release): version updates by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2044](https://github.com/vercel/turborepo/pull/2044) - Wire up api and team flags with viper by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2053](https://github.com/vercel/turborepo/pull/2053) - Ensure environment variables are sorted by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2054](https://github.com/vercel/turborepo/pull/2054) #### New Contributors - [@​iduuck](https://github.com/iduuck) made their first contribution in [https://github.com/vercel/turborepo/pull/2041](https://github.com/vercel/turborepo/pull/2041) - [@​sppatel](https://github.com/sppatel) made their first contribution in [https://github.com/vercel/turborepo/pull/1988](https://github.com/vercel/turborepo/pull/1988) **Full Changelog**: https://github.com/vercel/turborepo/compare/v1.5.1...v1.5.2 ### [`v1.5.1`](https://github.com/vercel/turborepo/releases/tag/v1.5.1) [Compare Source](https://github.com/vercel/turborepo/compare/v1.5.0...v1.5.1) #### What's Changed - Drop no-longer-supported platform references by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2033](https://github.com/vercel/turborepo/pull/2033) - We can infer identifer, we don't need to specify it by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2032](https://github.com/vercel/turborepo/pull/2032) **Full Changelog**: https://github.com/vercel/turborepo/compare/v1.5.0...v1.5.1 ### [`v1.5.0`](https://github.com/vercel/turborepo/releases/tag/v1.5.0) [Compare Source](https://github.com/vercel/turborepo/compare/v1.4.7...v1.5.0) #### What's Changed - Document inclusion of package.json in workspace task cache keys by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1955](https://github.com/vercel/turborepo/pull/1955) - Make run the default command by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1821](https://github.com/vercel/turborepo/pull/1821) - chore(deps): update dependency [@​types/react](https://github.com/types/react) to v17.0.50 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1980](https://github.com/vercel/turborepo/pull/1980) - chore(deps): update dependency [@​babel/core](https://github.com/babel/core) to v7.19.1 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1989](https://github.com/vercel/turborepo/pull/1989) - chore(deps): update dependency csstype to v3.1.1 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1981](https://github.com/vercel/turborepo/pull/1981) - fix(deps): update dependency react-hot-toast to v2.4.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1992](https://github.com/vercel/turborepo/pull/1992) - Drop unsupported platforms by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1903](https://github.com/vercel/turborepo/pull/1903) - fix(deps): update dependency classnames to v2.3.2 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1990](https://github.com/vercel/turborepo/pull/1990) - Wire up prysk and fix help flag by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2000](https://github.com/vercel/turborepo/pull/2000) - Enable turbod by default by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2001](https://github.com/vercel/turborepo/pull/2001) - Built monorepo handbook by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1881](https://github.com/vercel/turborepo/pull/1881) - Why turborepo images POC by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/2012](https://github.com/vercel/turborepo/pull/2012) - Added link to package installation by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/2009](https://github.com/vercel/turborepo/pull/2009) - Drop macos run of large benchmark on github actions. by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/2003](https://github.com/vercel/turborepo/pull/2003) - Typo fix by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/2017](https://github.com/vercel/turborepo/pull/2017) - feat(types): add turbo types package by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2024](https://github.com/vercel/turborepo/pull/2024) - fix(deps): update dependency nextra to v2.0.0-beta.29 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/2008](https://github.com/vercel/turborepo/pull/2008) - chore(core): deprecation messages for legacy env keys by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1959](https://github.com/vercel/turborepo/pull/1959) - feat(codemod): migrate turbo.json dependsOn by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/2022](https://github.com/vercel/turborepo/pull/2022) - feat: Add prune support for Yarn 3 by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/2019](https://github.com/vercel/turborepo/pull/2019) **Full Changelog**: https://github.com/vercel/turborepo/compare/v1.4.7...v1.5.0 ### [`v1.4.7`](https://github.com/vercel/turborepo/releases/tag/v1.4.7) [Compare Source](https://github.com/vercel/turborepo/compare/v1.4.6...v1.4.7) #### What's Changed - Add degit instructions for all examples by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1884](https://github.com/vercel/turborepo/pull/1884) - chore(turbo-ignore): add console message of an unfriendly error by [@​t-i-0414](https://github.com/t-i-0414) in [https://github.com/vercel/turborepo/pull/1871](https://github.com/vercel/turborepo/pull/1871) - Rewrote filtering workspaces docs by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1879](https://github.com/vercel/turborepo/pull/1879) - fix(deps): update dependency swr to v1.3.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1876](https://github.com/vercel/turborepo/pull/1876) - Rewrote pipelines, caching and remote caching docs by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1758](https://github.com/vercel/turborepo/pull/1758) - Reorganised pipeline docs with clearer headings, groupings and content by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1866](https://github.com/vercel/turborepo/pull/1866) - feat(ignore): check for turbo force by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1886](https://github.com/vercel/turborepo/pull/1886) - Fixed typo on remote caching page by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1889](https://github.com/vercel/turborepo/pull/1889) - Fixed redirect by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1888](https://github.com/vercel/turborepo/pull/1888) - Try out cram/prysk for CLI integration testing by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1829](https://github.com/vercel/turborepo/pull/1829) - (Controversial) Removed glossary and mentions of topological from the docs by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1868](https://github.com/vercel/turborepo/pull/1868) - feat: Add pnpm support for turbo prune by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/1819](https://github.com/vercel/turborepo/pull/1819) - Always include package.json in hash by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1832](https://github.com/vercel/turborepo/pull/1832) - chore(deps): update dependency [@​babel/core](https://github.com/babel/core) to v7.19.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1905](https://github.com/vercel/turborepo/pull/1905) - added code-shaper to code generation tools by [@​nareshbhatia](https://github.com/nareshbhatia) in [https://github.com/vercel/turborepo/pull/1909](https://github.com/vercel/turborepo/pull/1909) - added code-shaper to the code generation intro line by [@​nareshbhatia](https://github.com/nareshbhatia) in [https://github.com/vercel/turborepo/pull/1915](https://github.com/vercel/turborepo/pull/1915) - docs(examples/design-system): update readme by [@​theurgi](https://github.com/theurgi) in [https://github.com/vercel/turborepo/pull/1910](https://github.com/vercel/turborepo/pull/1910) - Finish port to cobra by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1792](https://github.com/vercel/turborepo/pull/1792) - chore(examples): clean with-next list by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1923](https://github.com/vercel/turborepo/pull/1923) - chore(examples): add comment for maintainability by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1927](https://github.com/vercel/turborepo/pull/1927) - Refactor reading turbo.json and add test cases by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1929](https://github.com/vercel/turborepo/pull/1929) - Re-jigged the landing and getting started pages by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1901](https://github.com/vercel/turborepo/pull/1901) - Upgrade Nextra by [@​shuding](https://github.com/shuding) in [https://github.com/vercel/turborepo/pull/1942](https://github.com/vercel/turborepo/pull/1942) - Enable inputs to be relative again. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1937](https://github.com/vercel/turborepo/pull/1937) - chore(deps): update dependency typescript to v4.8.3 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1934](https://github.com/vercel/turborepo/pull/1934) - fix(deps): update dependency eslint-plugin-react to v7.31.8 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1935](https://github.com/vercel/turborepo/pull/1935) - Removed bg circles to improve Safari perf by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1944](https://github.com/vercel/turborepo/pull/1944) - Made front-page title pink by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1945](https://github.com/vercel/turborepo/pull/1945) - chore(example): upgrade kitchen sink example by [@​ruisaraiva19](https://github.com/ruisaraiva19) in [https://github.com/vercel/turborepo/pull/1076](https://github.com/vercel/turborepo/pull/1076) - Import goreleaser cross by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1925](https://github.com/vercel/turborepo/pull/1925) - Turbo has more help text now, update test by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1931](https://github.com/vercel/turborepo/pull/1931) - fix(with-tailwind): dev script fails to build tailwindcss by [@​yanmao-cc](https://github.com/yanmao-cc) in [https://github.com/vercel/turborepo/pull/1898](https://github.com/vercel/turborepo/pull/1898) - fix(docs): update nextra by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1948](https://github.com/vercel/turborepo/pull/1948) - Use correct flag for graphviz version by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1954](https://github.com/vercel/turborepo/pull/1954) - Add mutex around helper cleanups by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1947](https://github.com/vercel/turborepo/pull/1947) - docs(running tasks): explicit instruction for workspace tasks by [@​mauricekleine](https://github.com/mauricekleine) in [https://github.com/vercel/turborepo/pull/1922](https://github.com/vercel/turborepo/pull/1922) - Reconcile cram tests and help text by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1956](https://github.com/vercel/turborepo/pull/1956) - chore(deps): update nextjs monorepo to v12.3.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1960](https://github.com/vercel/turborepo/pull/1960) - switch over to use go-yarnlock for yarn.lock parsing by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/1893](https://github.com/vercel/turborepo/pull/1893) - Improve CI setup by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1904](https://github.com/vercel/turborepo/pull/1904) - No shallow checkout for linting. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1972](https://github.com/vercel/turborepo/pull/1972) - Add ability to declare a env key in each pipeline task by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1970](https://github.com/vercel/turborepo/pull/1970) - Add ability to define a globalEnv key in turbo.json by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1950](https://github.com/vercel/turborepo/pull/1950) - Show outputModeTable in CLI and config docs by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1949](https://github.com/vercel/turborepo/pull/1949) - fix: Support pnpm patches in prune by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/1967](https://github.com/vercel/turborepo/pull/1967) - Update showcase images by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/1986](https://github.com/vercel/turborepo/pull/1986) - Add vimeo to showcase by [@​jaredpalmer](https://github.com/jaredpalmer) in [https://github.com/vercel/turborepo/pull/1987](https://github.com/vercel/turborepo/pull/1987) #### New Contributors - [@​t-i-0414](https://github.com/t-i-0414) made their first contribution in [https://github.com/vercel/turborepo/pull/1871](https://github.com/vercel/turborepo/pull/1871) - [@​nareshbhatia](https://github.com/nareshbhatia) made their first contribution in [https://github.com/vercel/turborepo/pull/1909](https://github.com/vercel/turborepo/pull/1909) - [@​theurgi](https://github.com/theurgi) made their first contribution in [https://github.com/vercel/turborepo/pull/1910](https://github.com/vercel/turborepo/pull/1910) - [@​ruisaraiva19](https://github.com/ruisaraiva19) made their first contribution in [https://github.com/vercel/turborepo/pull/1076](https://github.com/vercel/turborepo/pull/1076) - [@​yanmao-cc](https://github.com/yanmao-cc) made their first contribution in [https://github.com/vercel/turborepo/pull/1898](https://github.com/vercel/turborepo/pull/1898) - [@​mauricekleine](https://github.com/mauricekleine) made their first contribution in [https://github.com/vercel/turborepo/pull/1922](https://github.com/vercel/turborepo/pull/1922) **Full Changelog**: https://github.com/vercel/turborepo/compare/v1.4.6...v1.4.7 ### [`v1.4.6`](https://github.com/vercel/turborepo/releases/tag/v1.4.6) [Compare Source](https://github.com/vercel/turborepo/compare/v1.4.5...v1.4.6) #### What's Changed ##### Internal - fix(deps): update dependency ora to v4.1.1 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1854](https://github.com/vercel/turborepo/pull/1854) - Don't special case version command by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1870](https://github.com/vercel/turborepo/pull/1870) - fix(deps): update dependency react-hot-toast to v2.3.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1875](https://github.com/vercel/turborepo/pull/1875) - chore(deps): update jamesives/github-pages-deploy-action action to v4.4.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1851](https://github.com/vercel/turborepo/pull/1851) - chore(deps): update dependency typescript to v4.8.2 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1849](https://github.com/vercel/turborepo/pull/1849) - chore(deps): update dependency esbuild to ^0.15.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1848](https://github.com/vercel/turborepo/pull/1848) - Enable pnpm@6 testing. by [@​7flash](https://github.com/7flash) in [https://github.com/vercel/turborepo/pull/1837](https://github.com/vercel/turborepo/pull/1837) - fix(deps): update dependency eslint-plugin-react to v7.31.7 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1834](https://github.com/vercel/turborepo/pull/1834) - chore(deps): update dependency [@​types/react](https://github.com/types/react) to v17.0.49 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1833](https://github.com/vercel/turborepo/pull/1833) - Replace some 2 letter variables for readability by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1845](https://github.com/vercel/turborepo/pull/1845) ##### Documentation - Remove unused packages from docs site by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1828](https://github.com/vercel/turborepo/pull/1828) - Consolidated 'workspace' and 'package' terminology by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1817](https://github.com/vercel/turborepo/pull/1817) - Rewrote docs homepage by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1756](https://github.com/vercel/turborepo/pull/1756) - Update existing-monorepo.mdx by [@​shemayas](https://github.com/shemayas) in [https://github.com/vercel/turborepo/pull/1858](https://github.com/vercel/turborepo/pull/1858) - Update Docs by [@​PhentomPT](https://github.com/PhentomPT) in [https://github.com/vercel/turborepo/pull/1794](https://github.com/vercel/turborepo/pull/1794) - Fix broken links on "Add to existing Monorepo" by [@​pakaponk](https://github.com/pakaponk) in [https://github.com/vercel/turborepo/pull/1836](https://github.com/vercel/turborepo/pull/1836) ##### Examples - Removed parallel flag from basic example by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1787](https://github.com/vercel/turborepo/pull/1787) - Renamed storybook components by [@​samuelhorn](https://github.com/samuelhorn) in [https://github.com/vercel/turborepo/pull/1841](https://github.com/vercel/turborepo/pull/1841) ##### Packages - fix(eslint): exclude variables in rule by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1865](https://github.com/vercel/turborepo/pull/1865) #### New Contributors - [@​shemayas](https://github.com/shemayas) made their first contribution in [https://github.com/vercel/turborepo/pull/1858](https://github.com/vercel/turborepo/pull/1858) - [@​7flash](https://github.com/7flash) made their first contribution in [https://github.com/vercel/turborepo/pull/1837](https://github.com/vercel/turborepo/pull/1837) - [@​PhentomPT](https://github.com/PhentomPT) made their first contribution in [https://github.com/vercel/turborepo/pull/1794](https://github.com/vercel/turborepo/pull/1794) **Full Changelog**: https://github.com/vercel/turborepo/compare/v1.4.5...v1.4.6 ### [`v1.4.5`](https://github.com/vercel/turborepo/releases/tag/v1.4.5) [Compare Source](https://github.com/vercel/turborepo/compare/v1.4.4...v1.4.5) #### What's Changed ##### Core - Split notion of logged in into user and linked-team by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1844](https://github.com/vercel/turborepo/pull/1844) ##### Documentation - Turborepo usage. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1827](https://github.com/vercel/turborepo/pull/1827) - Remove unused [@​react-aria/radio](https://github.com/react-aria/radio) package by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1826](https://github.com/vercel/turborepo/pull/1826) - Fix broken links at "Next Steps" on "Add to Existing Monorepo" by [@​pakaponk](https://github.com/pakaponk) in [https://github.com/vercel/turborepo/pull/1835](https://github.com/vercel/turborepo/pull/1835) - Upgrade Nextra by [@​shuding](https://github.com/shuding) in [https://github.com/vercel/turborepo/pull/1831](https://github.com/vercel/turborepo/pull/1831) **Full Changelog**: https://github.com/vercel/turborepo/compare/v1.4.4...v1.4.5 ### [`v1.4.4`](https://github.com/vercel/turborepo/releases/tag/v1.4.4) [Compare Source](https://github.com/vercel/turborepo/compare/v1.4.3...v1.4.4) #### What's Changed - chore(deps): update dependency postcss to v8.4.16 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1669](https://github.com/vercel/turborepo/pull/1669) - chore(deps): update nextjs monorepo to v12.2.4 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1670](https://github.com/vercel/turborepo/pull/1670) - Make it easier to copy paste command from README by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1678](https://github.com/vercel/turborepo/pull/1678) - fix: Remove corepack upgrade step from corepack build target by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/1668](https://github.com/vercel/turborepo/pull/1668) - update: create-turbo templates to use react v18 by [@​joelhooks](https://github.com/joelhooks) in [https://github.com/vercel/turborepo/pull/1685](https://github.com/vercel/turborepo/pull/1685) - docs: Update with-nextjs readme to add prisma starter link by [@​Misikir](https://github.com/Misikir) in [https://github.com/vercel/turborepo/pull/1682](https://github.com/vercel/turborepo/pull/1682) - Flip benchmark to manual, only run on ubuntu, add protoc setup by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1687](https://github.com/vercel/turborepo/pull/1687) - fix: 🐛 typo by [@​futantan](https://github.com/futantan) in [https://github.com/vercel/turborepo/pull/1688](https://github.com/vercel/turborepo/pull/1688) - refactor: Prune prefactor by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/1689](https://github.com/vercel/turborepo/pull/1689) - Remove references to baseBranch by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1681](https://github.com/vercel/turborepo/pull/1681) - fix(deps): update dependency [@​react-aria/radio](https://github.com/react-aria/radio) to v3.3.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1679](https://github.com/vercel/turborepo/pull/1679) - output to terminal when we are just waiting for cache uploads by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1686](https://github.com/vercel/turborepo/pull/1686) - create-turbo: improve test cases and make them pass by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1655](https://github.com/vercel/turborepo/pull/1655) - chore(cli): fix comment by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1697](https://github.com/vercel/turborepo/pull/1697) - [#​1283](https://github.com/vercel/turborepo/issues/1283) - Fixed json5 support by [@​bguedes-moz](https://github.com/bguedes-moz) in [https://github.com/vercel/turborepo/pull/1472](https://github.com/vercel/turborepo/pull/1472) - Use git hash-object instead of git ls-files for inputs hashing by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1699](https://github.com/vercel/turborepo/pull/1699) - Move more fields out of Config by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1461](https://github.com/vercel/turborepo/pull/1461) - create-turbo: Add tests to assert package installation works by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1698](https://github.com/vercel/turborepo/pull/1698) - chore(ci): test all other packages in CI by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1709](https://github.com/vercel/turborepo/pull/1709) - Increase timeout for tests involving npm install by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1714](https://github.com/vercel/turborepo/pull/1714) - Wait for initial delay even with no TTY by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1713](https://github.com/vercel/turborepo/pull/1713) - Add yarn/berry switch in create-turbo tests. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1712](https://github.com/vercel/turborepo/pull/1712) - Add n8n to showcase by [@​ivov](https://github.com/ivov) in [https://github.com/vercel/turborepo/pull/1661](https://github.com/vercel/turborepo/pull/1661) - Run benchmarks, push data to tinybird and gh-pages by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1715](https://github.com/vercel/turborepo/pull/1715) - add Xata to showcase list by [@​atilafassina](https://github.com/atilafassina) in [https://github.com/vercel/turborepo/pull/1675](https://github.com/vercel/turborepo/pull/1675) - Remove MacOS from suggested setup by [@​alexander-young](https://github.com/alexander-young) in [https://github.com/vercel/turborepo/pull/1716](https://github.com/vercel/turborepo/pull/1716) - MacOS times out on large monorepo by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1721](https://github.com/vercel/turborepo/pull/1721) - Add back symlinks in fs cache by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1453](https://github.com/vercel/turborepo/pull/1453) - Removed blocks from storybook import by [@​samuelhorn](https://github.com/samuelhorn) in [https://github.com/vercel/turborepo/pull/1725](https://github.com/vercel/turborepo/pull/1725) - Document how to run unit tests by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1726](https://github.com/vercel/turborepo/pull/1726) - Fix instructions for running a single Go unit test by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1728](https://github.com/vercel/turborepo/pull/1728) - fix(docs): fix showcase layout shift by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1727](https://github.com/vercel/turborepo/pull/1727) - run_state refactor by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1711](https://github.com/vercel/turborepo/pull/1711) - Run go mod tidy by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1734](https://github.com/vercel/turborepo/pull/1734) - Invert automerging behavior from Kodiak by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1735](https://github.com/vercel/turborepo/pull/1735) - Minor editorial, grammatical, and spelling improvments to docs by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1701](https://github.com/vercel/turborepo/pull/1701) - Improve docs on how to get started debugging by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1736](https://github.com/vercel/turborepo/pull/1736) - Update CODEOWNERS with team by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1737](https://github.com/vercel/turborepo/pull/1737) - \[create-turbo] Remove registry argument to install. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1742](https://github.com/vercel/turborepo/pull/1742) - minor pipelines.mdx typo by [@​laurentlucian](https://github.com/laurentlucian) in [https://github.com/vercel/turborepo/pull/1743](https://github.com/vercel/turborepo/pull/1743) - fix(cli): fallback to manual hashing for global by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1747](https://github.com/vercel/turborepo/pull/1747) - Turbo Config refactor by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1739](https://github.com/vercel/turborepo/pull/1739) - Document how to publish new releases by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1750](https://github.com/vercel/turborepo/pull/1750) - Autofix fixable lint issues by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1748](https://github.com/vercel/turborepo/pull/1748) - Remove confusing features from docs page by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1754](https://github.com/vercel/turborepo/pull/1754) - Removed key emoji by [@​mattpocock](https://github.com/mattpocock) in [https://github.com/vercel/turborepo/pull/1757](https://github.com/vercel/turborepo/pull/1757) - Script for releasing from CI. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1562](https://github.com/vercel/turborepo/pull/1562) - chore(deps): update nextjs monorepo to v12.2.5 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1700](https://github.com/vercel/turborepo/pull/1700) - fix(deps): update dependency [@​react-aria/ssr](https://github.com/react-aria/ssr) to v3.3.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1680](https://github.com/vercel/turborepo/pull/1680) - docs: Callout that turbo.json is an input by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1762](https://github.com/vercel/turborepo/pull/1762) - Improve documentation of accepted options for outputMode config by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1761](https://github.com/vercel/turborepo/pull/1761) - Improve release docs by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1759](https://github.com/vercel/turborepo/pull/1759) - fix(deps): update dependency [@​react-aria/focus](https://github.com/react-aria/focus) to v3.7.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1548](https://github.com/vercel/turborepo/pull/1548) - fix(deps): update dependency eslint-plugin-react to v7.31.0 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1569](https://github.com/vercel/turborepo/pull/1569) - Update docs for release to clarify questions. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1766](https://github.com/vercel/turborepo/pull/1766) - Include the npm configuration for publishing. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1770](https://github.com/vercel/turborepo/pull/1770) - Remove hard link code and SameFile function by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1454](https://github.com/vercel/turborepo/pull/1454) - Remove command flag shorthands from docs. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1767](https://github.com/vercel/turborepo/pull/1767) - Callout automatic env var inclusion in dependsOn config by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1772](https://github.com/vercel/turborepo/pull/1772) - More docs by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turborepo/pull/1775](https://github.com/vercel/turborepo/pull/1775) - Move user config and repo config to Viper by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1751](https://github.com/vercel/turborepo/pull/1751) - Change fs.ReadPackageJSON to operate on AbsolutePath instances by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1773](https://github.com/vercel/turborepo/pull/1773) - Run the benchmark after every release by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1776](https://github.com/vercel/turborepo/pull/1776) - Add schema dialect to example turbo.json files by [@​DoctorJohn](https://github.com/DoctorJohn) in [https://github.com/vercel/turborepo/pull/1795](https://github.com/vercel/turborepo/pull/1795) - fix: rule doc link by [@​MarceloAlves](https://github.com/MarceloAlves) in [https://github.com/vercel/turborepo/pull/1793](https://github.com/vercel/turborepo/pull/1793) - Make create-turbo Berry-aware. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1717](https://github.com/vercel/turborepo/pull/1717) - Fix typo in getting-started.mdx by [@​afady](https://github.com/afady) in [https://github.com/vercel/turborepo/pull/1785](https://github.com/vercel/turborepo/pull/1785) - Provide a bit more context for trace files. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turborepo/pull/1768](https://github.com/vercel/turborepo/pull/1768) - fix(docs): nextjs with-docker link by [@​bobaaaaa](https://github.com/bobaaaaa) in [https://github.com/vercel/turborepo/pull/1800](https://github.com/vercel/turborepo/pull/1800) - Drop unused absolute unix path by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1791](https://github.com/vercel/turborepo/pull/1791) - Generate .npmrc just-in-time by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1805](https://github.com/vercel/turborepo/pull/1805) - fix: use docker cache best practices in examples by [@​HosseinAgha](https://github.com/HosseinAgha) in [https://github.com/vercel/turborepo/pull/1673](https://github.com/vercel/turborepo/pull/1673) - chore(deps): update dependency [@​babel/core](https://github.com/babel/core) to v7.18.13 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turborepo/pull/1765](https://github.com/vercel/turborepo/pull/1765) - chore(packages): typecheck and abstract ts config by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1807](https://github.com/vercel/turborepo/pull/1807) - chore(ci): use remote cache for JS tests by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turborepo/pull/1808](https://github.com/vercel/turborepo/pull/1808) - Set cmd.Dir to an absolute path when we execute scripts by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1774](https://github.com/vercel/turborepo/pull/1774) - Remove errant indentation by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1810](https://github.com/vercel/turborepo/pull/1810) - Remove --no-gc flag, always run with garbage collection by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turborepo/pull/1803](https://github.com/vercel/turborepo/pull/1803) - (refactor) add lockfile abstraction by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/1789](https://github.com/vercel/turborepo/pull/1789) - Move `fs.AbsolutePath` to `turbopath.AbsolutePath` by [@​nathanhammond](ht </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/sticky). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzMi4xODYuMiIsInVwZGF0ZWRJblZlciI6IjMyLjIzOC40In0=--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
We want to include each workspace's package.json as an input when
the user has configured a smaller set of inputs, because the package.json
defines the actual task turbo will execute for that workspace (via scripts).
If that task definition changes, the cache is invalid.
We only apply this inclusion when inputs are defined, because if inputs
are not defined, all git-tracked files are included in the hash,
which will also include the package.json file.