Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add --log-prefix=none option #3851

Merged

Conversation

mehulkar
Copy link
Contributor

@mehulkar mehulkar commented Feb 17, 2023

This adds a --log-prefix=none CLI argument to turbo run commands that will remove the <package>:<task>: prefix when running tasks (both on execute and replay from cache). This removal will also apply to "single package" repos where the prefix is just <task>:

This new option is intended to alleviate some user issues piping logs into other tools, but comes with a Buyer Beware warning that logs from parallel tasks are still interleaved. We may implement a buffering mechanism (long time issue: #219), that will further help with this, but this PR does not do that.

@vercel
Copy link

vercel bot commented Feb 17, 2023

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

Name Status Preview Comments Updated
examples-basic-web 🔄 Building (Inspect) Visit Preview Feb 21, 2023 at 8:28PM (UTC)
examples-svelte-web 🔄 Building (Inspect) Feb 21, 2023 at 8:28PM (UTC)
turbo-site ✅ Ready (Inspect) Visit Preview 💬 Add your feedback Feb 21, 2023 at 8:28PM (UTC)
7 Ignored Deployments
Name Status Preview Comments Updated
examples-cra-web ⬜️ Ignored (Inspect) Visit Preview Feb 21, 2023 at 8:28PM (UTC)
examples-designsystem-docs ⬜️ Ignored (Inspect) Visit Preview Feb 21, 2023 at 8:28PM (UTC)
examples-kitchensink-blog ⬜️ Ignored (Inspect) Feb 21, 2023 at 8:28PM (UTC)
examples-native-web ⬜️ Ignored (Inspect) Visit Preview Feb 21, 2023 at 8:28PM (UTC)
examples-nonmonorepo ⬜️ Ignored (Inspect) Visit Preview Feb 21, 2023 at 8:28PM (UTC)
examples-tailwind-web ⬜️ Ignored (Inspect) Visit Preview Feb 21, 2023 at 8:28PM (UTC)
examples-vite-web ⬜️ Ignored (Inspect) Visit Preview Feb 21, 2023 at 8:28PM (UTC)

cli/integration_tests/run_logging/log_prefix.t Outdated Show resolved Hide resolved
@@ -352,6 +352,9 @@ pub struct RunArgs {
/// to identify which packages have changed.
#[clap(long)]
pub since: Option<String>,
/// Can be: "none" or missing. Internally, the default is not named yet.
#[clap(long)]
pub log_prefix: Option<String>,
Copy link
Contributor Author

@mehulkar mehulkar Feb 17, 2023

Choose a reason for hiding this comment

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

I'm copying the existing args here, I don't know if I need other things here too

Copy link
Contributor

Choose a reason for hiding this comment

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

I agree that on the Go side that an enum is overkill, but on the Rust side we should validate the log prefix since "none" is the only valid value. This can be done using ValueEnum. The only thing that we should pay attention to is how log_prefix gets serialized to JSON. Currently None will map to "log_prefix": null which I believe maps to "" in Go. Happy to hop on a call to help with this.

@@ -352,6 +352,9 @@ pub struct RunArgs {
/// to identify which packages have changed.
#[clap(long)]
pub since: Option<String>,
/// Can be: "none" or missing. Internally, the default is not named yet.
#[clap(long)]
Copy link
Contributor Author

@mehulkar mehulkar Feb 17, 2023

Choose a reason for hiding this comment

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

does this need a default?

Copy link
Contributor

Choose a reason for hiding this comment

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

Rust implements Default for Option as Option::None so we're fine as long as that's the expected default.

@@ -74,4 +74,7 @@ type runOpts struct {
graphFile string
noDaemon bool
singlePackage bool

// logPrefix controls whether we should print a prefix in task logs
logPrefix string
Copy link
Contributor Author

@mehulkar mehulkar Feb 17, 2023

Choose a reason for hiding this comment

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

I looked into using an enum here instead of a string, but decided against it because:

  • we don't have any other options to implement yet
  • we'd need unmarshaling from the rust args payload, which seems like throwaway work. We should be able to adapt to an internal enum any time down the line if it's necessary (before or after rust port)

@github-actions
Copy link
Contributor

github-actions bot commented Feb 17, 2023

🟢 CI successful 🟢

Thanks

Copy link
Contributor

@chris-olszewski chris-olszewski left a comment

Choose a reason for hiding this comment

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

I think we need to error if the user passes an invalid value to log-prefix, but that can probably be exclusively done on the Rust side.

cli/integration_tests/no_args.t Outdated Show resolved Hide resolved
crates/turborepo-lib/src/cli.rs Outdated Show resolved Hide resolved
@@ -352,6 +352,9 @@ pub struct RunArgs {
/// to identify which packages have changed.
#[clap(long)]
pub since: Option<String>,
/// Can be: "none" or missing. Internally, the default is not named yet.
#[clap(long)]
Copy link
Contributor

Choose a reason for hiding this comment

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

Rust implements Default for Option as Option::None so we're fine as long as that's the expected default.

@@ -352,6 +352,9 @@ pub struct RunArgs {
/// to identify which packages have changed.
#[clap(long)]
pub since: Option<String>,
/// Can be: "none" or missing. Internally, the default is not named yet.
#[clap(long)]
pub log_prefix: Option<String>,
Copy link
Contributor

Choose a reason for hiding this comment

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

I agree that on the Go side that an enum is overkill, but on the Rust side we should validate the log prefix since "none" is the only valid value. This can be done using ValueEnum. The only thing that we should pay attention to is how log_prefix gets serialized to JSON. Currently None will map to "log_prefix": null which I believe maps to "" in Go. Happy to hop on a call to help with this.


var prefix string
var prettyPrefix string
if ec.rs.Opts.runOpts.logPrefix == "none" {
Copy link
Contributor

Choose a reason for hiding this comment

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

Since none is the only value that does anything, we should probably:

  • alter the help text so it's clear that "--log-prefix=none" is the only correct use of this flag
  • throw is the user passes something that's not none and not silently ignore an incorrect flag

@mehulkar mehulkar merged commit dbc0837 into main Feb 21, 2023
@mehulkar mehulkar deleted the mehulkar/turbo-804-make-it-possible-to-log-without-prefixes branch February 21, 2023 22:02
kodiakhq bot pushed a commit to timelessco/js-bottomsheet that referenced this pull request Feb 22, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`^1.8.1` -> `^1.8.2`](https://renovatebot.com/diffs/npm/turbo/1.8.1/1.8.2) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.8.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.8.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.8.2/compatibility-slim/1.8.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.8.2/confidence-slim/1.8.1)](https://docs.renovatebot.com/merge-confidence/) |
| [vite](https://togithub.com/vitejs/vite/tree/main/#readme) ([source](https://togithub.com/vitejs/vite)) | [`^4.1.3` -> `^4.1.4`](https://renovatebot.com/diffs/npm/vite/4.1.3/4.1.4) | [![age](https://badges.renovateapi.com/packages/npm/vite/4.1.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/vite/4.1.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/vite/4.1.4/compatibility-slim/4.1.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/vite/4.1.4/confidence-slim/4.1.3)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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



#### What's Changed

##### Changelog

-   release(turborepo): 1.8.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#3869
-   refactor: remove `react/jsx-key` ESLint rule by [@&#8203;albertothedev](https://togithub.com/albertothedev) in [vercel/turbo#3880
-   Add missing comma to dependsOn code example by [@&#8203;jan-paulus](https://togithub.com/jan-paulus) in [vercel/turbo#3884
-   Add --log-prefix=none option by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#3851
-   Fix turbo run when --filter is provided and no packages are affected by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#3901
-   release(turborepo): 1.8.2-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#3906

#### New Contributors

-   [@&#8203;albertothedev](https://togithub.com/albertothedev) made their first contribution in [vercel/turbo#3880
-   [@&#8203;jan-paulus](https://togithub.com/jan-paulus) made their first contribution in [vercel/turbo#3884

**Full Changelog**: vercel/turbo@v1.8.1...v1.8.2

</details>

<details>
<summary>vitejs/vite</summary>

### [`v4.1.4`](https://togithub.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small414-2023-02-21-small)

[Compare Source](https://togithub.com/vitejs/vite/compare/v4.1.3...v4.1.4)

-   fix(define): should not stringify vite internal env ([#&#8203;12120](https://togithub.com/vitejs/vite/issues/12120)) ([73c3999](https://togithub.com/vitejs/vite/commit/73c3999)), closes [#&#8203;12120](https://togithub.com/vitejs/vite/issues/12120)
-   docs: update rollup docs links ([#&#8203;12130](https://togithub.com/vitejs/vite/issues/12130)) ([439a73f](https://togithub.com/vitejs/vite/commit/439a73f)), closes [#&#8203;12130](https://togithub.com/vitejs/vite/issues/12130)

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

This PR contains the following updates:

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

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.8.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#3869
- refactor: remove `react/jsx-key` ESLint rule by
[@&#8203;albertothedev](https://togithub.com/albertothedev) in
[vercel/turbo#3880
- Add missing comma to dependsOn code example by
[@&#8203;jan-paulus](https://togithub.com/jan-paulus) in
[vercel/turbo#3884
- Add --log-prefix=none option by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#3851
- Fix turbo run when --filter is provided and no packages are affected
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#3901
- release(turborepo): 1.8.2-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#3906

#### New Contributors

- [@&#8203;albertothedev](https://togithub.com/albertothedev) made their
first contribution in
[vercel/turbo#3880
- [@&#8203;jan-paulus](https://togithub.com/jan-paulus) made their first
contribution in
[vercel/turbo#3884

**Full Changelog**:
vercel/turbo@v1.8.1...v1.8.2

</details>

---

### Configuration

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

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

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

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

---

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

---

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

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

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@aws-sdk/client-cognito-identity-provider](https://togithub.com/aws/aws-sdk-js-v3/tree/main/clients/client-cognito-identity-provider) ([source](https://togithub.com/aws/aws-sdk-js-v3)) | [`3.276.0` -> `3.278.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-cognito-identity-provider/3.276.0/3.278.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.278.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.278.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.278.0/compatibility-slim/3.276.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.278.0/confidence-slim/3.276.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@playwright/test](https://playwright.dev) ([source](https://togithub.com/Microsoft/playwright)) | [`1.31.0` -> `1.31.1`](https://renovatebot.com/diffs/npm/@playwright%2ftest/1.31.0/1.31.1) | [![age](https://badges.renovateapi.com/packages/npm/@playwright%2ftest/1.31.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@playwright%2ftest/1.31.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@playwright%2ftest/1.31.1/compatibility-slim/1.31.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@playwright%2ftest/1.31.1/confidence-slim/1.31.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@tanstack/eslint-plugin-query](https://tanstack.com/query) ([source](https://togithub.com/tanstack/query)) | [`4.24.8` -> `4.24.11`](https://renovatebot.com/diffs/npm/@tanstack%2feslint-plugin-query/4.24.8/4.24.11) | [![age](https://badges.renovateapi.com/packages/npm/@tanstack%2feslint-plugin-query/4.24.11/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@tanstack%2feslint-plugin-query/4.24.11/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@tanstack%2feslint-plugin-query/4.24.11/compatibility-slim/4.24.8)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@tanstack%2feslint-plugin-query/4.24.11/confidence-slim/4.24.8)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.14.0` -> `18.14.1`](https://renovatebot.com/diffs/npm/@types%2fnode/18.14.0/18.14.1) | [![age](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.14.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.14.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.14.1/compatibility-slim/18.14.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.14.1/confidence-slim/18.14.0)](https://docs.renovatebot.com/merge-confidence/) |
| [axios](https://axios-http.com) ([source](https://togithub.com/axios/axios)) | [`1.3.3` -> `1.3.4`](https://renovatebot.com/diffs/npm/axios/1.3.3/1.3.4) | [![age](https://badges.renovateapi.com/packages/npm/axios/1.3.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/axios/1.3.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/axios/1.3.4/compatibility-slim/1.3.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/axios/1.3.4/confidence-slim/1.3.3)](https://docs.renovatebot.com/merge-confidence/) |
| [next-router-mock](https://togithub.com/scottrippey/next-router-mock) | [`0.9.1` -> `0.9.2`](https://renovatebot.com/diffs/npm/next-router-mock/0.9.1/0.9.2) | [![age](https://badges.renovateapi.com/packages/npm/next-router-mock/0.9.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/next-router-mock/0.9.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/next-router-mock/0.9.2/compatibility-slim/0.9.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/next-router-mock/0.9.2/confidence-slim/0.9.1)](https://docs.renovatebot.com/merge-confidence/) |
| [quicktype-core](https://togithub.com/quicktype/quicktype) | [`23.0.5` -> `23.0.7`](https://renovatebot.com/diffs/npm/quicktype-core/23.0.5/23.0.7) | [![age](https://badges.renovateapi.com/packages/npm/quicktype-core/23.0.7/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/quicktype-core/23.0.7/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/quicktype-core/23.0.7/compatibility-slim/23.0.5)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/quicktype-core/23.0.7/confidence-slim/23.0.5)](https://docs.renovatebot.com/merge-confidence/) |
| [react-i18next](https://togithub.com/i18next/react-i18next) | [`12.1.5` -> `12.2.0`](https://renovatebot.com/diffs/npm/react-i18next/12.1.5/12.2.0) | [![age](https://badges.renovateapi.com/packages/npm/react-i18next/12.2.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/react-i18next/12.2.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/react-i18next/12.2.0/compatibility-slim/12.1.5)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/react-i18next/12.2.0/confidence-slim/12.1.5)](https://docs.renovatebot.com/merge-confidence/) |
| [tslog](https://tslog.js.org) ([source](https://togithub.com/fullstack-build/tslog)) | [`4.7.4` -> `4.7.5`](https://renovatebot.com/diffs/npm/tslog/4.7.4/4.7.5) | [![age](https://badges.renovateapi.com/packages/npm/tslog/4.7.5/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/tslog/4.7.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/tslog/4.7.5/compatibility-slim/4.7.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/tslog/4.7.5/confidence-slim/4.7.4)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.8.1` -> `1.8.2`](https://renovatebot.com/diffs/npm/turbo/1.8.1/1.8.2) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.8.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.8.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.8.2/compatibility-slim/1.8.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.8.2/confidence-slim/1.8.1)](https://docs.renovatebot.com/merge-confidence/) |
| [zod-prisma-types](https://togithub.com/chrishoermann/zod-prisma-types) | [`2.2.2` -> `2.2.3`](https://renovatebot.com/diffs/npm/zod-prisma-types/2.2.2/2.2.3) | [![age](https://badges.renovateapi.com/packages/npm/zod-prisma-types/2.2.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/zod-prisma-types/2.2.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/zod-prisma-types/2.2.3/compatibility-slim/2.2.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/zod-prisma-types/2.2.3/confidence-slim/2.2.2)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>aws/aws-sdk-js-v3</summary>

### [`v3.278.0`](https://togithub.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-cognito-identity-provider/CHANGELOG.md#&#8203;32780-httpsgithubcomawsaws-sdk-js-v3comparev32770v32780-2023-02-23)

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

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

</details>

<details>
<summary>Microsoft/playwright</summary>

### [`v1.31.1`](https://togithub.com/microsoft/playwright/releases/tag/v1.31.1)

[Compare Source](https://togithub.com/Microsoft/playwright/compare/v1.31.0...v1.31.1)

#### Highlights

[microsoft/playwright#21093 - \[Regression v1.31] Headless Windows shows cascading cmd windows[microsoft/playwright#21106 - fix(loader): experimentalLoader with node@18

#### Browser Versions

-   Chromium 111.0.5563.19
-   Mozilla Firefox 109.0
-   WebKit 16.4

This version was also tested against the following stable channels:

-   Google Chrome 110
-   Microsoft Edge 110

</details>

<details>
<summary>tanstack/query</summary>

### [`v4.24.11`](https://togithub.com/TanStack/query/releases/tag/v4.24.11)

[Compare Source](https://togithub.com/tanstack/query/compare/v4.24.8...v4.24.11)

Version 4.24.11 - 2/23/2023, 6:02 AM

#### Changes

##### Fix

-   eslint-plugin: handle new & as const ([#&#8203;5025](https://togithub.com/tanstack/query/issues/5025)) ([`5b92682`](https://togithub.com/tanstack/query/commit/5b92682b)) by Eliya Cohen

#### Packages

-   [@&#8203;tanstack/eslint-plugin-query](https://togithub.com/tanstack/eslint-plugin-query)[@&#8203;4](https://togithub.com/4).24.11

</details>

<details>
<summary>axios/axios</summary>

### [`v1.3.4`](https://togithub.com/axios/axios/blob/HEAD/CHANGELOG.md#&#8203;134-httpsgithubcomaxiosaxioscomparev133v134-2023-02-22)

[Compare Source](https://togithub.com/axios/axios/compare/v1.3.3...v1.3.4)

##### Bug Fixes

-   **blob:** added a check to make sure the Blob class is available in the browser's global scope; ([#&#8203;5548](https://togithub.com/axios/axios/issues/5548)) ([3772c8f](https://togithub.com/axios/axios/commit/3772c8fe74112a56e3e9551f894d899bc3a9443a))
-   **http:** fixed regression bug when handling synchronous errors inside the adapter; ([#&#8203;5564](https://togithub.com/axios/axios/issues/5564)) ([a3b246c](https://togithub.com/axios/axios/commit/a3b246c9de5c3bc4b5a742e15add55b375479451))

##### Contributors to this release

-   <img src="https://avatars.githubusercontent.com/u/12586868?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Dmitriy Mozgovoy](https://togithub.com/DigitalBrainJS "+38/-26 (#&#8203;5564 )")
-   <img src="https://avatars.githubusercontent.com/u/19550000?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [lcysgsg](https://togithub.com/lcysgsg "+4/-0 (#&#8203;5548 )")
-   <img src="https://avatars.githubusercontent.com/u/5492927?v&#x3D;4&amp;s&#x3D;18" alt="avatar" width="18"/> [Michael Di Prisco](https://togithub.com/Cadienvan "+3/-0 (#&#8203;5444 )")

</details>

<details>
<summary>scottrippey/next-router-mock</summary>

### [`v0.9.2`](https://togithub.com/scottrippey/next-router-mock/compare/v0.9.1...v0.9.2)

[Compare Source](https://togithub.com/scottrippey/next-router-mock/compare/v0.9.1...v0.9.2)

</details>

<details>
<summary>quicktype/quicktype</summary>

### [`v23.0.7`](https://togithub.com/quicktype/quicktype/compare/28428bf18972379be0a124208934fa08403bdca7...3efb6b6670fa3709b3d9418ca70bc9b763a11724)

[Compare Source](https://togithub.com/quicktype/quicktype/compare/28428bf18972379be0a124208934fa08403bdca7...3efb6b6670fa3709b3d9418ca70bc9b763a11724)

### [`v23.0.6`](https://togithub.com/quicktype/quicktype/compare/61a10839ef31a0aa1d71278045ac9605494ff369...28428bf18972379be0a124208934fa08403bdca7)

[Compare Source](https://togithub.com/quicktype/quicktype/compare/61a10839ef31a0aa1d71278045ac9605494ff369...28428bf18972379be0a124208934fa08403bdca7)

</details>

<details>
<summary>i18next/react-i18next</summary>

### [`v12.2.0`](https://togithub.com/i18next/react-i18next/blob/HEAD/CHANGELOG.md#&#8203;1220)

[Compare Source](https://togithub.com/i18next/react-i18next/compare/v12.1.5...v12.2.0)

-   if defaultValue is passed in not ready t functio (via useTranslation) return that instead of the key, even though the user-land could should be fixed [1618](https://togithub.com/i18next/react-i18next/issues/1618)

</details>

<details>
<summary>fullstack-build/tslog</summary>

### [`v4.7.5`](https://togithub.com/fullstack-build/tslog/releases/tag/v4.7.5)

[Compare Source](https://togithub.com/fullstack-build/tslog/compare/v4.7.4...v4.7.5)

-   Clone errors before masking and make fields writable, fix [#&#8203;217](https://togithub.com/fullstack-build/tslog/issues/217)  [`a5a0ac2`](https://togithub.com/fullstack-build/tslog/commit/a5a0ac2)
-   Fix Browser Polyfill, fix [#&#8203;216](https://togithub.com/fullstack-build/tslog/issues/216)  [`6352c32`](https://togithub.com/fullstack-build/tslog/commit/6352c32)

</details>

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

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

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



#### What's Changed

##### Changelog

-   release(turborepo): 1.8.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#3869
-   refactor: remove `react/jsx-key` ESLint rule by [@&#8203;albertothedev](https://togithub.com/albertothedev) in [vercel/turbo#3880
-   Add missing comma to dependsOn code example by [@&#8203;jan-paulus](https://togithub.com/jan-paulus) in [vercel/turbo#3884
-   Add --log-prefix=none option by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#3851
-   Fix turbo run when --filter is provided and no packages are affected by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#3901
-   release(turborepo): 1.8.2-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#3906

#### New Contributors

-   [@&#8203;albertothedev](https://togithub.com/albertothedev) made their first contribution in [vercel/turbo#3880
-   [@&#8203;jan-paulus](https://togithub.com/jan-paulus) made their first contribution in [vercel/turbo#3884

**Full Changelog**: vercel/turbo@v1.8.1...v1.8.2

</details>

<details>
<summary>chrishoermann/zod-prisma-types</summary>

### [`v2.2.3`](https://togithub.com/chrishoermann/zod-prisma-types/releases/tag/v2.2.3): 2.2.3

[Compare Source](https://togithub.com/chrishoermann/zod-prisma-types/compare/v2.2.2...v2.2.3)

#### What's changed

-   `NullableJsonInput` is now imported as `type`

**Full Changelog**: chrishoermann/zod-prisma-types@v2.2.0...v2.2.3

</details>

---

### Configuration

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

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

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

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

---

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

---

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



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

This PR contains the following updates:

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

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.8.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#3915
- turbo-ignore doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#3814
- Align carets to key in JSON file by
[@&#8203;n2o](https://togithub.com/n2o) in
[vercel/turbo#3909
- fix(examples): svelte
([#&#8203;3919](https://togithub.com/vercel/turbo/issues/3919) by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#3919
- fix(examples): kitchen-sink
([#&#8203;3920](https://togithub.com/vercel/turbo/issues/3920) by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#3920
- fix(prettier): remove whitespace from example
([#&#8203;3924](https://togithub.com/vercel/turbo/issues/3924) by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#3924
- Add empty `public` folder to stop Docker builds breaking by
[@&#8203;a3957273](https://togithub.com/a3957273) in
[vercel/turbo#3899
- feature: Use error_for_status by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#3898
- fix: Inference with workspace config by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#3938
- Add global hash inputs to dry run by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#3934
- Fix relative links on installing page by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#3937
- Update configuring-workspaces.mdx by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#3940
- Always look up task definition, but limit when it's added to traversa…
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#3951
- Update getting started to depend on turbo.json for order by
[@&#8203;kevinsimper](https://togithub.com/kevinsimper) in
[vercel/turbo#3859
- Root inference: skip turbo.json by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#3946
- Add per-package-manager instructions to create-new by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#3971
- fix: support prune without turbo.json by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#3785
- chore(eslint): bump version by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#3976
- release(turborepo): 1.8.3-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#3981

#### New Contributors

- [@&#8203;n2o](https://togithub.com/n2o) made their first contribution
in
[vercel/turbo#3909
- [@&#8203;a3957273](https://togithub.com/a3957273) made their first
contribution in
[vercel/turbo#3899
- [@&#8203;kevinsimper](https://togithub.com/kevinsimper) made their
first contribution in
[vercel/turbo#3859
- [@&#8203;The-0xAlex](https://togithub.com/The-0xAlex) made their first
contribution in
[vercel/turbo#3968

**Full Changelog**:
vercel/turbo@v1.8.2...v1.8.3

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.8.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#3869
- refactor: remove `react/jsx-key` ESLint rule by
[@&#8203;albertothedev](https://togithub.com/albertothedev) in
[vercel/turbo#3880
- Add missing comma to dependsOn code example by
[@&#8203;jan-paulus](https://togithub.com/jan-paulus) in
[vercel/turbo#3884
- Add --log-prefix=none option by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#3851
- Fix turbo run when --filter is provided and no packages are affected
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#3901
- release(turborepo): 1.8.2-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#3906

#### New Contributors

- [@&#8203;albertothedev](https://togithub.com/albertothedev) made their
first contribution in
[vercel/turbo#3880
- [@&#8203;jan-paulus](https://togithub.com/jan-paulus) made their first
contribution in
[vercel/turbo#3884

**Full Changelog**:
vercel/turbo@v1.8.1...v1.8.2

</details>

---

### Configuration

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

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

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

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

---

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

---

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

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

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

This PR contains the following updates:

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

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

-   release(turborepo): 1.8.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#3869
-   refactor: remove `react/jsx-key` ESLint rule by [@&#8203;albertothedev](https://togithub.com/albertothedev) in [vercel/turbo#3880
-   Add missing comma to dependsOn code example by [@&#8203;jan-paulus](https://togithub.com/jan-paulus) in [vercel/turbo#3884
-   Add --log-prefix=none option by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#3851
-   Fix turbo run when --filter is provided and no packages are affected by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#3901
-   release(turborepo): 1.8.2-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#3906

#### New Contributors

-   [@&#8203;albertothedev](https://togithub.com/albertothedev) made their first contribution in [vercel/turbo#3880
-   [@&#8203;jan-paulus](https://togithub.com/jan-paulus) made their first contribution in [vercel/turbo#3884

**Full Changelog**: vercel/turbo@v1.8.1...v1.8.2

</details>

---

### Configuration

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

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

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

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

---

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

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/singlestone/sugar).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNTIuNCIsInVwZGF0ZWRJblZlciI6IjM0LjE1Mi40In0=-->
marcneubauer added a commit to marcneubauer/turbo that referenced this pull request Nov 30, 2023
Copied and edited comment from vercel#3851 to document this CLI flag.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: logging Improvements to logging
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants