Releases: vercel/turborepo
Releases · vercel/turborepo
v1.0.7
What's Changed
turbo
- Fix parsing weird formats of the keywords field of some package.json files by @01walid in #161
- Remove WriteFile and move it into CopyFile by @bolshoytoster in #204
- Fix error when passing --api, --url, --heap, --cpuprofile, --trace, --no-gc flags by @jaredpalmer in #233
create-turbo
- fix: remove
.
, which is not needed by @lidqqq in #186 - update create-turbo template gitignore pnpm by @charkour in #196
- Fix initiating a project within the current directory by @seanyusa in #212
- Improved success output for create-turbo by @seanyusa in #222
- Add engine requirements to
create-turbo/package.json
, fixexamples/with-pnpm
by @charkour in #199
Docs
- Use correct casing for TypeScript by @KarelVerschraegen in #188
- Fix overstate typo in command-line-reference by @KarelVerschraegen in #189
- Use the verb set up instead of the noun setup by @KarelVerschraegen in #192
- Fix forseeable typo in complimentary-tools by @KarelVerschraegen in #191
- Fix wildcard typo in scopes docs by @KarelVerschraegen in #193
- Fix typos in docs by @yangshun in #201
- Use double quotes for prettier file glob in yarn format by @yangshun in #202
- Fixed the swagger repo link in the docs by @ashfaqnisar in #200
- Add kitchen sink example by @jaredpalmer in #198
- Kitchen sink: Update cache to boolean, not string by @coreylight in #207
- Added explanation for where to acquire a turbo token by @mattpocock in #228
- Redirect /docs/changelog to GitHub releases by @jaredpalmer in #220
Chores
- Running create-turbo tests by @seanyusa in #216
- Add codeowners by @jaredpalmer in #232
New Contributors
- @lidqqq made their first contribution in #186
- @KarelVerschraegen made their first contribution in #188
- @charkour made their first contribution in #196
- @yangshun made their first contribution in #201
- @ashfaqnisar made their first contribution in #200
- @01walid made their first contribution in #161
- @coreylight made their first contribution in #207
- @seanyusa made their first contribution in #212
- @bolshoytoster made their first contribution in #204
- @mattpocock made their first contribution in #228
Full Changelog: v1.0.6...v1.0.7
v1.0.6
What's Changed
- Add support for
--only
flag that matches lerna/pnpm run behavior by @jaredpalmer in #174 The--only
flag is to support restricting task execution to only the tasks specified inrun
. This makes it easier to adopt Turbo in a Lerna codebase since--only
behavior is effectively an exact match.
For this Turbo pipeline:
"turbo": {
"pipeline": {
"build": {
"outputs": [
"dist/**/*"
],
"dependsOn": [
"^build"
]
},
"test": {
"dependsOn": [
"^build"
]
}
}
turbo run test
turbo run test --only --graph
Full Changelog: v1.0.5...v1.0.6
v1.0.5
What's Changed
- Fix packageJson struct by @jaredpalmer in #155
- Fix typos in comments by @Jastor11 in #160
- Fix Spelling Errors in create-turbo readme by @debopamgupta in #164
- ci: Fix typo in issue template by @weyert in #162
- [DOCS] Friendly spellcheck by @Jastor11 in #163
- Fix: add ui package & types library in with-pnpm example by @mnismt in #165
- Fix internal deps by @ezradiniz in #166
- Add comma to package.json code snippet in migrate from lerna doc by @williamtetlow in #168
- Fix: broken "topologically" link in pipelines docs by @mnismt in #171
- Fix ui dep in examples by @jaredpalmer in #173
New Contributors
- @Jastor11 made their first contribution in #160
- @debopamgupta made their first contribution in #164
- @weyert made their first contribution in #162
- @mnismt made their first contribution in #165
- @ezradiniz made their first contribution in #166
- @williamtetlow made their first contribution in #168
Full Changelog: v1.0.4...v1.0.5
v1.0.4
What's Changed
- Stop running
yarn
in base template by @jaredpalmer in #152 - Bump next.js by @jaredpalmer in #151
Full Changelog: v1.0.3...v1.0.4
v1.0.3
What's Changed
- Set a fallback for the user's name when running turbo link by @dglsparsons in #137
- Fix Github link by @ThangHuuVu in #138
- fix: remote caching link by @emersonlaurentino in #136
- Add a codeblock showing how to run a pipeline by @dglsparsons in #140
- Link directly to getting started by @jaredpalmer in #139
- Fix templates backticks by @jaredpalmer in #141
- Updated OG image by @BretHudson in #142
- Update login instruction on failed link to run
npx turbo login
by @gaspar09 in #147
New Contributors
- @ThangHuuVu made their first contribution in #138
- @emersonlaurentino made their first contribution in #136
- @BretHudson made their first contribution in #142
Full Changelog: v1.0.2...v1.0.3
v1.0.2
What's Changed
- Fixed broekn links by @molebox in #125
- Typo: it's chaching –> its caching by @dylanklohr in #126
- Update explanation of remote caching in Turbo CLI output by @leerob in #127
- Use @latest everywhere npx is used by @jaredpalmer in #128
- Fix faulty
microsoft/beachball
-link by @KATT in #129 - Fix faulty CODE_OF_CONDUCT.md link by @cbourgois in #131
- Fix typo in getting started section. by @dokeet in #130
- Fix Changesets references in the docs by @Andarist in #132
- Fixed Typo by @furkandmrblk in #134
- Remove yarn from npm template scripts by @dglsparsons in #133
New Contributors
- @dylanklohr made their first contribution in #126
- @KATT made their first contribution in #129
- @cbourgois made their first contribution in #131
- @dokeet made their first contribution in #130
- @Andarist made their first contribution in #132
- @furkandmrblk made their first contribution in #134
Full Changelog: v1.0.1...v1.0.2
v1.0.1
publish 1.0.1 to registry
v1.0.0
publish 1.0.0 to registry
v0.9.0-next.2
What's Changed
- Fixed postinstall script
v0.9.0-next.1
What's Changed
- Add workaround for windows x yarn users by @jaredpalmer in #93