-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
fix: ensure that memory is free'd using the same allocator #4101
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
8 Ignored Deployments
|
f00ce91
to
595fac2
Compare
🟢 CI successful 🟢Thanks |
I think we should write up a little bit about ownership across this FFI. It's a bit confusing and it'd be good to make it explicit. If I understand correctly, it goes like this: When Rust passes a Buffer to Go, Rust "forgets" about the Buffer, Go receives the Buffer, unmarshals it, and then frees it by having Rust drop the Buffer. When Go passes a Buffer to Rust, Go creates the Buffer and implicitly "forgets" about it, Rust receives the Buffer and drops it when executing Is that correct? And if so, in the Go to Rust case, does that mean that Go is allocating but Rust is freeing? That seems incorrect. |
...yes. I am also confused by why the go side works but rust doesn't. I just did another dry run (see here for artifacts https://github.com/arlyon/turbo/actions/runs/4355600953) and it works. That said, I will make the behaviour consistent and make sure to add some rigorous docs to the crate. |
I guess it works because the Rust code is not re-entered, so Rust doesn't ever touch the memory again, and likely Go never touches it either because it's forgotten about it. The main concern I have is whether this leads to Rust "stealing" memory from Go because Go never to GC that buffer |
595fac2
to
f3da9ea
Compare
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.
Looks good! The comments are very helpful too
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.
Discussed in person, but left the comments requesting documentation around Go deallocating slices.
We were encountering segfaults on certain combinations of go / rust versions. This was determined to be due to differing allocators. Memory reserved on one side of the sandwich and free'd on the other would sometimes work depending on toolchains / platform. This resolves that problem.
0aa61df
to
9e8c407
Compare
We might be able to remove |
We were encountering segfaults on certain combinations of go / rust versions. This was determined to be due to differing allocators. Memory reserved on one side of the sandwich and free'd on the other would sometimes fail depending on toolchains / platform. This resolves that problem. To complicate things, this issue would only arise during cross-compilation, and not when building on the target OS / arch, as the allocator would presumably be the same. ### Testing Instructions I am going to run a dry run canary that we can re-test, though I have manualy verified the cross-compilation for win amd64.
## Bugfixes - vercel/turborepo#3526 - vercel/turborepo#4084 - vercel/turborepo#4083 - vercel/turborepo#4067 - vercel/turborepo#3959 - vercel/turborepo#4060 - vercel/turborepo#4081 - vercel/turborepo#4103 - vercel/turborepo#4100 - vercel/turborepo#4108 - vercel/turborepo#4101 - vercel/turborepo#4112 - vercel/turborepo#3956 - vercel/turborepo#4118 - vercel/turborepo#4117 ## Feature - vercel/turborepo#4058 - vercel/turborepo#4013 - vercel/turborepo#4005 - vercel/turborepo#4001 - vercel/turborepo#3839 - vercel/turborepo#4017 - vercel/turborepo#4086 - vercel/turborepo#4067 ## Performance - vercel/turborepo#4040 - vercel/turborepo#4110 ## Refactor - vercel/turborepo#4098
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [prettier](https://prettier.io) ([source](https://github.com/prettier/prettier)) | [`^2.8.4` -> `^2.8.5`](https://renovatebot.com/diffs/npm/prettier/2.8.4/2.8.5) | [![age](https://badges.renovateapi.com/packages/npm/prettier/2.8.5/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/prettier/2.8.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/prettier/2.8.5/compatibility-slim/2.8.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/prettier/2.8.5/confidence-slim/2.8.4)](https://docs.renovatebot.com/merge-confidence/) | | [turbo](https://turbo.build/repo) ([source](https://github.com/vercel/turbo)) | [`^1.8.3` -> `^1.8.4`](https://renovatebot.com/diffs/npm/turbo/1.8.3/1.8.4) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/compatibility-slim/1.8.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/confidence-slim/1.8.3)](https://docs.renovatebot.com/merge-confidence/) | | [vite](https://github.com/vitejs/vite/tree/main/#readme) ([source](https://github.com/vitejs/vite)) | [`^4.2.0` -> `^4.2.1`](https://renovatebot.com/diffs/npm/vite/4.2.0/4.2.1) | [![age](https://badges.renovateapi.com/packages/npm/vite/4.2.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/vite/4.2.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/vite/4.2.1/compatibility-slim/4.2.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/vite/4.2.1/confidence-slim/4.2.0)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>prettier/prettier</summary> ### [`v2.8.5`](https://github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#​285) [Compare Source](https://github.com/prettier/prettier/compare/2.8.4...2.8.5) [diff](https://github.com/prettier/prettier/compare/2.8.4...2.8.5) ##### Support TypeScript 5.0 ([#​14391](https://github.com/prettier/prettier/pull/14391) by [@​fisker](https://github.com/fisker), [#​13819](https://github.com/prettier/prettier/pull/13819) by [@​fisker](https://github.com/fisker), [@​sosukesuzuki](https://github.com/sosukesuzuki)) TypeScript 5.0 introduces two new syntactic features: - `const` modifiers for type parameters - `export type *` declarations ##### Add missing parentheses for decorator ([#​14393](https://github.com/prettier/prettier/pull/14393) by [@​fisker](https://github.com/fisker)) ```jsx // Input class Person { @​(myDecoratorArray[0]) greet() {} } // Prettier 2.8.4 class Person { @​myDecoratorArray[0] greet() {} } // Prettier 2.8.5 class Person { @​(myDecoratorArray[0]) greet() {} } ``` ##### Add parentheses for `TypeofTypeAnnotation` to improve readability ([#​14458](https://github.com/prettier/prettier/pull/14458) by [@​fisker](https://github.com/fisker)) ```tsx // Input type A = (typeof node.children)[]; // Prettier 2.8.4 type A = typeof node.children[]; // Prettier 2.8.5 type A = (typeof node.children)[]; ``` ##### Support `max_line_length=off` when parsing `.editorconfig` ([#​14516](https://github.com/prettier/prettier/pull/14516) by [@​josephfrazier](https://github.com/josephfrazier)) If an .editorconfig file is in your project and it sets `max_line_length=off` for the file you're formatting, it will be interpreted as a `printWidth` of `Infinity` rather than being ignored (which previously resulted in the default `printWidth` of 80 being applied, if not overridden by Prettier-specific configuration). ```html <!-- Input --> <div className='HelloWorld' title={`You are visitor number ${ num }`} onMouseOver={onMouseOver}/> <!-- Prettier 2.8.4 --> <div className="HelloWorld" title={`You are visitor number ${num}`} onMouseOver={onMouseOver} />; <!-- Prettier 2.8.5 --> <div className="HelloWorld" title={`You are visitor number ${num}`} onMouseOver={onMouseOver} />; ``` </details> <details> <summary>vercel/turbo</summary> ### [`v1.8.4`](https://github.com/vercel/turbo/releases/tag/v1.8.4): Turborepo v1.8.4 [Compare Source](https://github.com/vercel/turbo/compare/v1.8.3...v1.8.4) #### What's Changed ##### Changelog - release(turborepo): 1.8.3 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/3989](https://github.com/vercel/turbo/pull/3989) - enable rust codepath in release process by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/3903](https://github.com/vercel/turbo/pull/3903) - Add tests to validate errors-only is working by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3945](https://github.com/vercel/turbo/pull/3945) - fix: make inputs relative to workspace root by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/3993](https://github.com/vercel/turbo/pull/3993) - Include expanded inputs config for each task in dry run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3957](https://github.com/vercel/turbo/pull/3957) - fix prisma example ReferenceError by [@​mkreuzmayr](https://github.com/mkreuzmayr) in [https://github.com/vercel/turbo/pull/3947](https://github.com/vercel/turbo/pull/3947) - feat(codemod): support workspace configs by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/3992](https://github.com/vercel/turbo/pull/3992) - fix: scm make patterns relative by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/3996](https://github.com/vercel/turbo/pull/3996) - feat(cli): support --no-update-notifier by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4003](https://github.com/vercel/turbo/pull/4003) - feat(docs): move reference up in priority ([#​4007](https://github.com/vercel/turbo/issues/4007) by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4007](https://github.com/vercel/turbo/pull/4007) - Add inferred framework to Dry Run by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3941](https://github.com/vercel/turbo/pull/3941) - Fix prettier by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4022](https://github.com/vercel/turbo/pull/4022) - Build Requirements for Ubuntu by [@​tm1000](https://github.com/tm1000) in [https://github.com/vercel/turbo/pull/4010](https://github.com/vercel/turbo/pull/4010) - Add missing function from port. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4027](https://github.com/vercel/turbo/pull/4027) - Calculate TaskHash while constructing PackageTask by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4016](https://github.com/vercel/turbo/pull/4016) - Refactor env package to breakdown env vars for task by source by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4021](https://github.com/vercel/turbo/pull/4021) - Add task + framework env vars into Dry Run Summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4020](https://github.com/vercel/turbo/pull/4020) - fix(codemod): don’t set outputs for cache:false by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4029](https://github.com/vercel/turbo/pull/4029) - Client timeout by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/3998](https://github.com/vercel/turbo/pull/3998) - Add turboVersion into dry run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4047](https://github.com/vercel/turbo/pull/4047) - Assign Framework to PackageTask struct by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4050](https://github.com/vercel/turbo/pull/4050) - Create runsummary package and rename DryRunSummary to RunSummary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4052](https://github.com/vercel/turbo/pull/4052) - Revert "enable rust codepath in release process" by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4068](https://github.com/vercel/turbo/pull/4068) - release(turborepo): 1.8.4-canary.0 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4065](https://github.com/vercel/turbo/pull/4065) - release(turborepo): 1.8.4-canary.1 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4070](https://github.com/vercel/turbo/pull/4070) - Log the json that we are sending to the go binary by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4067](https://github.com/vercel/turbo/pull/4067) - Generate a run summary file on turbo run by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4069](https://github.com/vercel/turbo/pull/4069) - fix: ensure that memory is free'd using the same allocator by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/4101](https://github.com/vercel/turbo/pull/4101) - Parallel cache state by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4110](https://github.com/vercel/turbo/pull/4110) - release(turborepo): 1.8.4-canary.2 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4113](https://github.com/vercel/turbo/pull/4113) - chore: Bumping fsnotify version by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/3956](https://github.com/vercel/turbo/pull/3956) - Add globalenv to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4090](https://github.com/vercel/turbo/pull/4090) - Flag on the Go sandwich, attempt [#​2](https://github.com/vercel/turbo/issues/2) by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4115](https://github.com/vercel/turbo/pull/4115) - Re-repair Root Inference by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4049](https://github.com/vercel/turbo/pull/4049) - Correct argument to local `turbo` inference. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4122](https://github.com/vercel/turbo/pull/4122) - release(turborepo): 1.8.4-canary.3 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4125](https://github.com/vercel/turbo/pull/4125) - Revert "Flag on the Go sandwich, attempt [#​2](https://github.com/vercel/turbo/issues/2)" ([#​4127](https://github.com/vercel/turbo/issues/4127) by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4127](https://github.com/vercel/turbo/pull/4127) - Support exclusions in inputs by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4066](https://github.com/vercel/turbo/pull/4066) - release(turborepo): 1.8.4-canary.4 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4131](https://github.com/vercel/turbo/pull/4131) - Add TaskExecutionSummary to Run Summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4116](https://github.com/vercel/turbo/pull/4116) - Amend incorrect file referenced in Getting Started by [@​richardjzhang](https://github.com/richardjzhang) in [https://github.com/vercel/turbo/pull/4148](https://github.com/vercel/turbo/pull/4148) - feat(turbo-ignore): update logging by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4154](https://github.com/vercel/turbo/pull/4154) - fix sentence by [@​bhatvikrant](https://github.com/bhatvikrant) in [https://github.com/vercel/turbo/pull/4158](https://github.com/vercel/turbo/pull/4158) - fix(create-turbo): update create-turbo eslint template ([#​4160](https://github.com/vercel/turbo/issues/4160) by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4160](https://github.com/vercel/turbo/pull/4160) - Add log to go binary by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4157](https://github.com/vercel/turbo/pull/4157) - Add expandedOutputs to run summary of each task by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4095](https://github.com/vercel/turbo/pull/4095) - Remove env-var linting comments. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/4162](https://github.com/vercel/turbo/pull/4162) - Fix integration tests to add new log message by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4164](https://github.com/vercel/turbo/pull/4164) - chore(deps): update mysql docker tag to v8.0.32 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turbo/pull/4071](https://github.com/vercel/turbo/pull/4071) - fix(examples): update kitchen-sink dev task by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4177](https://github.com/vercel/turbo/pull/4177) - Ensure we record the lockfile name when there's an error unmarshalling by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4180](https://github.com/vercel/turbo/pull/4180) - Add dependencies and dependent tasks into run summaries by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4165](https://github.com/vercel/turbo/pull/4165) - update lockfile due to removed packages by [@​sokra](https://github.com/sokra) in [https://github.com/vercel/turbo/pull/4192](https://github.com/vercel/turbo/pull/4192) - Downgrade git warning to debug. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4193](https://github.com/vercel/turbo/pull/4193) - fix(turborepo): race condition in config tests by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4186](https://github.com/vercel/turbo/pull/4186) - Run integration tests in parallel by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4044](https://github.com/vercel/turbo/pull/4044) - fix: SCM relative paths in nested turborepo by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4184](https://github.com/vercel/turbo/pull/4184) - Throw an error when a task graph cannot run to completion. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4205](https://github.com/vercel/turbo/pull/4205) - fix: Turbo SCM with Windows paths by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4207](https://github.com/vercel/turbo/pull/4207) - chore: Flip the Rust switch by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4181](https://github.com/vercel/turbo/pull/4181) - gracefully handle ctrlc on windows by proactively the killing go process by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/4196](https://github.com/vercel/turbo/pull/4196) - release(turborepo): 1.8.4-canary.5 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4215](https://github.com/vercel/turbo/pull/4215) - Fix forward inference test parallelization. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4203](https://github.com/vercel/turbo/pull/4203) - Add pass through args to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4209](https://github.com/vercel/turbo/pull/4209) - Fix duplicate items in task summaries by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4217](https://github.com/vercel/turbo/pull/4217) - Add a hash of external dependencies to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4212](https://github.com/vercel/turbo/pull/4212) - fix: prune pnpm patched dependencies with peer dependencies by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/4200](https://github.com/vercel/turbo/pull/4200) - Add a version to the run summary schema by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4230](https://github.com/vercel/turbo/pull/4230) - release(turborepo): 1.8.4-canary.6 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4234](https://github.com/vercel/turbo/pull/4234) - chore(deps): update dependency tsx to v3.12.5 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turbo/pull/3962](https://github.com/vercel/turbo/pull/3962) - Check that root commands cannot invoke turbo by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4223](https://github.com/vercel/turbo/pull/4223) - Fix error message documentation by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4094](https://github.com/vercel/turbo/pull/4094) - Filter out summaries of tasks that didn't execute by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4238](https://github.com/vercel/turbo/pull/4238) - docs: Document common question around turborepo-ffi by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4232](https://github.com/vercel/turbo/pull/4232) - feat(examples): add vercel template to meta by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4242](https://github.com/vercel/turbo/pull/4242) - refactor: Removed includeUntracked because it's always set to true by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4243](https://github.com/vercel/turbo/pull/4243) #### New Contributors - [@​mkreuzmayr](https://github.com/mkreuzmayr) made their first contribution in [https://github.com/vercel/turbo/pull/3947](https://github.com/vercel/turbo/pull/3947) - [@​tm1000](https://github.com/tm1000) made their first contribution in [https://github.com/vercel/turbo/pull/4010](https://github.com/vercel/turbo/pull/4010) - [@​timneutkens](https://github.com/timneutkens) made their first contribution in [https://github.com/vercel/turbo/pull/4080](https://github.com/vercel/turbo/pull/4080) - [@​tunguyen-ct](https://github.com/tunguyen-ct) made their first contribution in [https://github.com/vercel/turbo/pull/4097](https://github.com/vercel/turbo/pull/4097) - [@​richardjzhang](https://github.com/richardjzhang) made their first contribution in [https://github.com/vercel/turbo/pull/4148](https://github.com/vercel/turbo/pull/4148) - [@​bhatvikrant](https://github.com/bhatvikrant) made their first contribution in [https://github.com/vercel/turbo/pull/4158](https://github.com/vercel/turbo/pull/4158) **Full Changelog**: vercel/turborepo@v1.8.3...v1.8.4 </details> <details> <summary>vitejs/vite</summary> ### [`v4.2.1`](https://github.com/vitejs/vite/blob/HEAD/packages/vite/CHANGELOG.md#small421-2023-03-20-small) [Compare Source](https://github.com/vitejs/vite/compare/9dbb7f7765fd7d255daf82ad44fe867d49f0befd...v4.2.1) - fix: add `virtual:` to virtual module source map ignore ([#​12444](https://github.com/vitejs/vite/issues/12444)) ([c4aa28f](https://github.com/vitejs/vite/commit/c4aa28f)), closes [#​12444](https://github.com/vitejs/vite/issues/12444) - fix(css): inject source content conditionally ([#​12449](https://github.com/vitejs/vite/issues/12449)) ([3e665f6](https://github.com/vitejs/vite/commit/3e665f6)), closes [#​12449](https://github.com/vitejs/vite/issues/12449) - fix(worker): using data URLs for inline shared worker ([#​12014](https://github.com/vitejs/vite/issues/12014)) ([79a5007](https://github.com/vitejs/vite/commit/79a5007)), closes [#​12014](https://github.com/vitejs/vite/issues/12014) - chore: changelog edits for 4.2 ([#​12438](https://github.com/vitejs/vite/issues/12438)) ([ce047e3](https://github.com/vitejs/vite/commit/ce047e3)), closes [#​12438](https://github.com/vitejs/vite/issues/12438) </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://github.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).
[![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://github.com/vercel/turbo)) | [`^1.8.3` -> `^1.8.4`](https://renovatebot.com/diffs/npm/turbo/1.8.3/1.8.4) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/compatibility-slim/1.8.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/confidence-slim/1.8.3)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/turbo</summary> ### [`v1.8.4`](https://github.com/vercel/turbo/releases/tag/v1.8.4): Turborepo v1.8.4 [Compare Source](https://github.com/vercel/turbo/compare/v1.8.3...v1.8.4) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v1.8.4 --> #### What's Changed ##### Changelog - release(turborepo): 1.8.3 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/3989](https://github.com/vercel/turbo/pull/3989) - enable rust codepath in release process by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/3903](https://github.com/vercel/turbo/pull/3903) - Add tests to validate errors-only is working by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3945](https://github.com/vercel/turbo/pull/3945) - fix: make inputs relative to workspace root by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/3993](https://github.com/vercel/turbo/pull/3993) - Include expanded inputs config for each task in dry run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3957](https://github.com/vercel/turbo/pull/3957) - fix prisma example ReferenceError by [@​mkreuzmayr](https://github.com/mkreuzmayr) in [https://github.com/vercel/turbo/pull/3947](https://github.com/vercel/turbo/pull/3947) - feat(codemod): support workspace configs by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/3992](https://github.com/vercel/turbo/pull/3992) - fix: scm make patterns relative by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/3996](https://github.com/vercel/turbo/pull/3996) - feat(cli): support --no-update-notifier by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4003](https://github.com/vercel/turbo/pull/4003) - feat(docs): move reference up in priority ([#​4007](https://github.com/vercel/turbo/issues/4007) by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4007](https://github.com/vercel/turbo/pull/4007) - Add inferred framework to Dry Run by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3941](https://github.com/vercel/turbo/pull/3941) - Fix prettier by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4022](https://github.com/vercel/turbo/pull/4022) - Build Requirements for Ubuntu by [@​tm1000](https://github.com/tm1000) in [https://github.com/vercel/turbo/pull/4010](https://github.com/vercel/turbo/pull/4010) - Add missing function from port. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4027](https://github.com/vercel/turbo/pull/4027) - Calculate TaskHash while constructing PackageTask by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4016](https://github.com/vercel/turbo/pull/4016) - Refactor env package to breakdown env vars for task by source by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4021](https://github.com/vercel/turbo/pull/4021) - Add task + framework env vars into Dry Run Summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4020](https://github.com/vercel/turbo/pull/4020) - fix(codemod): don’t set outputs for cache:false by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4029](https://github.com/vercel/turbo/pull/4029) - Client timeout by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/3998](https://github.com/vercel/turbo/pull/3998) - Add turboVersion into dry run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4047](https://github.com/vercel/turbo/pull/4047) - Assign Framework to PackageTask struct by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4050](https://github.com/vercel/turbo/pull/4050) - Create runsummary package and rename DryRunSummary to RunSummary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4052](https://github.com/vercel/turbo/pull/4052) - Revert "enable rust codepath in release process" by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4068](https://github.com/vercel/turbo/pull/4068) - release(turborepo): 1.8.4-canary.0 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4065](https://github.com/vercel/turbo/pull/4065) - release(turborepo): 1.8.4-canary.1 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4070](https://github.com/vercel/turbo/pull/4070) - Log the json that we are sending to the go binary by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4067](https://github.com/vercel/turbo/pull/4067) - Generate a run summary file on turbo run by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4069](https://github.com/vercel/turbo/pull/4069) - fix: ensure that memory is free'd using the same allocator by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/4101](https://github.com/vercel/turbo/pull/4101) - Parallel cache state by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4110](https://github.com/vercel/turbo/pull/4110) - release(turborepo): 1.8.4-canary.2 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4113](https://github.com/vercel/turbo/pull/4113) - chore: Bumping fsnotify version by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/3956](https://github.com/vercel/turbo/pull/3956) - Add globalenv to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4090](https://github.com/vercel/turbo/pull/4090) - Flag on the Go sandwich, attempt [#​2](https://github.com/vercel/turbo/issues/2) by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4115](https://github.com/vercel/turbo/pull/4115) - Re-repair Root Inference by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4049](https://github.com/vercel/turbo/pull/4049) - Correct argument to local `turbo` inference. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4122](https://github.com/vercel/turbo/pull/4122) - release(turborepo): 1.8.4-canary.3 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4125](https://github.com/vercel/turbo/pull/4125) - Revert "Flag on the Go sandwich, attempt [#​2](https://github.com/vercel/turbo/issues/2)" ([#​4127](https://github.com/vercel/turbo/issues/4127) by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4127](https://github.com/vercel/turbo/pull/4127) - Support exclusions in inputs by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4066](https://github.com/vercel/turbo/pull/4066) - release(turborepo): 1.8.4-canary.4 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4131](https://github.com/vercel/turbo/pull/4131) - Add TaskExecutionSummary to Run Summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4116](https://github.com/vercel/turbo/pull/4116) - Amend incorrect file referenced in Getting Started by [@​richardjzhang](https://github.com/richardjzhang) in [https://github.com/vercel/turbo/pull/4148](https://github.com/vercel/turbo/pull/4148) - feat(turbo-ignore): update logging by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4154](https://github.com/vercel/turbo/pull/4154) - fix sentence by [@​bhatvikrant](https://github.com/bhatvikrant) in [https://github.com/vercel/turbo/pull/4158](https://github.com/vercel/turbo/pull/4158) - fix(create-turbo): update create-turbo eslint template ([#​4160](https://github.com/vercel/turbo/issues/4160) by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4160](https://github.com/vercel/turbo/pull/4160) - Add log to go binary by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4157](https://github.com/vercel/turbo/pull/4157) - Add expandedOutputs to run summary of each task by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4095](https://github.com/vercel/turbo/pull/4095) - Remove env-var linting comments. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/4162](https://github.com/vercel/turbo/pull/4162) - Fix integration tests to add new log message by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4164](https://github.com/vercel/turbo/pull/4164) - chore(deps): update mysql docker tag to v8.0.32 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turbo/pull/4071](https://github.com/vercel/turbo/pull/4071) - fix(examples): update kitchen-sink dev task by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4177](https://github.com/vercel/turbo/pull/4177) - Ensure we record the lockfile name when there's an error unmarshalling by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4180](https://github.com/vercel/turbo/pull/4180) - Add dependencies and dependent tasks into run summaries by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4165](https://github.com/vercel/turbo/pull/4165) - update lockfile due to removed packages by [@​sokra](https://github.com/sokra) in [https://github.com/vercel/turbo/pull/4192](https://github.com/vercel/turbo/pull/4192) - Downgrade git warning to debug. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4193](https://github.com/vercel/turbo/pull/4193) - fix(turborepo): race condition in config tests by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4186](https://github.com/vercel/turbo/pull/4186) - Run integration tests in parallel by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4044](https://github.com/vercel/turbo/pull/4044) - fix: SCM relative paths in nested turborepo by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4184](https://github.com/vercel/turbo/pull/4184) - Throw an error when a task graph cannot run to completion. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4205](https://github.com/vercel/turbo/pull/4205) - fix: Turbo SCM with Windows paths by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4207](https://github.com/vercel/turbo/pull/4207) - chore: Flip the Rust switch by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4181](https://github.com/vercel/turbo/pull/4181) - gracefully handle ctrlc on windows by proactively the killing go process by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/4196](https://github.com/vercel/turbo/pull/4196) - release(turborepo): 1.8.4-canary.5 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4215](https://github.com/vercel/turbo/pull/4215) - Fix forward inference test parallelization. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4203](https://github.com/vercel/turbo/pull/4203) - Add pass through args to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4209](https://github.com/vercel/turbo/pull/4209) - Fix duplicate items in task summaries by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4217](https://github.com/vercel/turbo/pull/4217) - Add a hash of external dependencies to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4212](https://github.com/vercel/turbo/pull/4212) - fix: prune pnpm patched dependencies with peer dependencies by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/4200](https://github.com/vercel/turbo/pull/4200) - Add a version to the run summary schema by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4230](https://github.com/vercel/turbo/pull/4230) - release(turborepo): 1.8.4-canary.6 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4234](https://github.com/vercel/turbo/pull/4234) - chore(deps): update dependency tsx to v3.12.5 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turbo/pull/3962](https://github.com/vercel/turbo/pull/3962) - Check that root commands cannot invoke turbo by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4223](https://github.com/vercel/turbo/pull/4223) - Fix error message documentation by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4094](https://github.com/vercel/turbo/pull/4094) - Filter out summaries of tasks that didn't execute by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4238](https://github.com/vercel/turbo/pull/4238) - docs: Document common question around turborepo-ffi by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4232](https://github.com/vercel/turbo/pull/4232) - feat(examples): add vercel template to meta by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4242](https://github.com/vercel/turbo/pull/4242) - refactor: Removed includeUntracked because it's always set to true by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4243](https://github.com/vercel/turbo/pull/4243) #### New Contributors - [@​mkreuzmayr](https://github.com/mkreuzmayr) made their first contribution in [https://github.com/vercel/turbo/pull/3947](https://github.com/vercel/turbo/pull/3947) - [@​tm1000](https://github.com/tm1000) made their first contribution in [https://github.com/vercel/turbo/pull/4010](https://github.com/vercel/turbo/pull/4010) - [@​timneutkens](https://github.com/timneutkens) made their first contribution in [https://github.com/vercel/turbo/pull/4080](https://github.com/vercel/turbo/pull/4080) - [@​tunguyen-ct](https://github.com/tunguyen-ct) made their first contribution in [https://github.com/vercel/turbo/pull/4097](https://github.com/vercel/turbo/pull/4097) - [@​richardjzhang](https://github.com/richardjzhang) made their first contribution in [https://github.com/vercel/turbo/pull/4148](https://github.com/vercel/turbo/pull/4148) - [@​bhatvikrant](https://github.com/bhatvikrant) made their first contribution in [https://github.com/vercel/turbo/pull/4158](https://github.com/vercel/turbo/pull/4158) **Full Changelog**: vercel/turborepo@v1.8.3...v1.8.4 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://app.renovatebot.com/dashboard#github/fwouts/previewjs). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xNC4yIiwidXBkYXRlZEluVmVyIjoiMzUuMTQuMiJ9--> 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 | |---|---|---|---|---|---| | [@aws-lambda-powertools/logger](https://github.com/awslabs/aws-lambda-powertools-typescript/tree/main/packages/logging#readme) ([source](https://github.com/awslabs/aws-lambda-powertools-typescript)) | [`1.6.0` -> `1.7.0`](https://renovatebot.com/diffs/npm/@aws-lambda-powertools%2flogger/1.6.0/1.7.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-lambda-powertools%2flogger/1.7.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-lambda-powertools%2flogger/1.7.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-lambda-powertools%2flogger/1.7.0/compatibility-slim/1.6.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-lambda-powertools%2flogger/1.7.0/confidence-slim/1.6.0)](https://docs.renovatebot.com/merge-confidence/) | | [@aws-sdk/client-cognito-identity-provider](https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-cognito-identity-provider) ([source](https://github.com/aws/aws-sdk-js-v3)) | [`3.294.0` -> `3.295.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-cognito-identity-provider/3.294.0/3.295.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.295.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.295.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.295.0/compatibility-slim/3.294.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-cognito-identity-provider/3.295.0/confidence-slim/3.294.0)](https://docs.renovatebot.com/merge-confidence/) | | [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3/tree/main/clients/client-s3) ([source](https://github.com/aws/aws-sdk-js-v3)) | [`3.294.0` -> `3.295.0`](https://renovatebot.com/diffs/npm/@aws-sdk%2fclient-s3/3.294.0/3.295.0) | [![age](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.295.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.295.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.295.0/compatibility-slim/3.294.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@aws-sdk%2fclient-s3/3.295.0/confidence-slim/3.294.0)](https://docs.renovatebot.com/merge-confidence/) | | [@trpc/client](https://trpc.io) ([source](https://github.com/trpc/trpc)) | [`10.16.0` -> `10.17.0`](https://renovatebot.com/diffs/npm/@trpc%2fclient/10.16.0/10.17.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.17.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.17.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.17.0/compatibility-slim/10.16.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2fclient/10.17.0/confidence-slim/10.16.0)](https://docs.renovatebot.com/merge-confidence/) | | [@trpc/next](https://trpc.io) ([source](https://github.com/trpc/trpc)) | [`10.16.0` -> `10.17.0`](https://renovatebot.com/diffs/npm/@trpc%2fnext/10.16.0/10.17.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.17.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.17.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.17.0/compatibility-slim/10.16.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2fnext/10.17.0/confidence-slim/10.16.0)](https://docs.renovatebot.com/merge-confidence/) | | [@trpc/react-query](https://trpc.io) ([source](https://github.com/trpc/trpc)) | [`10.16.0` -> `10.17.0`](https://renovatebot.com/diffs/npm/@trpc%2freact-query/10.16.0/10.17.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.17.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.17.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.17.0/compatibility-slim/10.16.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2freact-query/10.17.0/confidence-slim/10.16.0)](https://docs.renovatebot.com/merge-confidence/) | | [@trpc/server](https://trpc.io) ([source](https://github.com/trpc/trpc)) | [`10.16.0` -> `10.17.0`](https://renovatebot.com/diffs/npm/@trpc%2fserver/10.16.0/10.17.0) | [![age](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.17.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.17.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.17.0/compatibility-slim/10.16.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@trpc%2fserver/10.17.0/confidence-slim/10.16.0)](https://docs.renovatebot.com/merge-confidence/) | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped)) | [`18.15.3` -> `18.15.5`](https://renovatebot.com/diffs/npm/@types%2fnode/18.15.3/18.15.5) | [![age](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.15.5/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.15.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.15.5/compatibility-slim/18.15.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.15.5/confidence-slim/18.15.3)](https://docs.renovatebot.com/merge-confidence/) | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint) | [`5.55.0` -> `5.56.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/5.55.0/5.56.0) | [![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.56.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.56.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.56.0/compatibility-slim/5.55.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.56.0/confidence-slim/5.55.0)](https://docs.renovatebot.com/merge-confidence/) | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint) | [`5.55.0` -> `5.56.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/5.55.0/5.56.0) | [![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.56.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.56.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.56.0/compatibility-slim/5.55.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.56.0/confidence-slim/5.55.0)](https://docs.renovatebot.com/merge-confidence/) | | [eslint-config-prettier](https://github.com/prettier/eslint-config-prettier) | [`8.7.0` -> `8.8.0`](https://renovatebot.com/diffs/npm/eslint-config-prettier/8.7.0/8.8.0) | [![age](https://badges.renovateapi.com/packages/npm/eslint-config-prettier/8.8.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/eslint-config-prettier/8.8.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/eslint-config-prettier/8.8.0/compatibility-slim/8.7.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/eslint-config-prettier/8.8.0/confidence-slim/8.7.0)](https://docs.renovatebot.com/merge-confidence/) | | [eslint-plugin-turbo](https://github.com/vercel/turbo) | [`0.0.9` -> `0.0.10`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/0.0.9/0.0.10) | [![age](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/0.0.10/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/0.0.10/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/0.0.10/compatibility-slim/0.0.9)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/0.0.10/confidence-slim/0.0.9)](https://docs.renovatebot.com/merge-confidence/) | | [tsx](https://github.com/esbuild-kit/tsx) | [`3.12.5` -> `3.12.6`](https://renovatebot.com/diffs/npm/tsx/3.12.5/3.12.6) | [![age](https://badges.renovateapi.com/packages/npm/tsx/3.12.6/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/tsx/3.12.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/tsx/3.12.6/compatibility-slim/3.12.5)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/tsx/3.12.6/confidence-slim/3.12.5)](https://docs.renovatebot.com/merge-confidence/) | | [turbo](https://turbo.build/repo) ([source](https://github.com/vercel/turbo)) | [`1.8.3` -> `1.8.4`](https://renovatebot.com/diffs/npm/turbo/1.8.3/1.8.4) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/compatibility-slim/1.8.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/confidence-slim/1.8.3)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>awslabs/aws-lambda-powertools-typescript</summary> ### [`v1.7.0`](https://github.com/awslabs/aws-lambda-powertools-typescript/blob/HEAD/CHANGELOG.md#​170-httpsgithubcomawslabsaws-lambda-powertools-typescriptcomparev160v170-2023-03-20) [Compare Source](https://github.com/awslabs/aws-lambda-powertools-typescript/compare/v1.6.0...v1.7.0) ##### Bug Fixes - **docs:** typo in layer arn ([bc5f7c9](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/bc5f7c99e02396223e726962432fc3856a68a29d)) ##### Features - **logger:** add silent log level to suppress the emission of all logs ([#​1347](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1347)) ([c82939e](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/c82939ebdb82ae596cbad07be397794ee4b69fe5)) - **metrics:** support high resolution metrics ([#​1369](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1369)) ([79a321b](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/79a321b199ef51a024dc25b83673baf2eb03de69)) - **parameters:** AppConfigProvider to return the last valid value when the API returns empty value on subsequent calls ([#​1365](https://github.com/awslabs/aws-lambda-powertools-typescript/issues/1365)) ([97339d9](https://github.com/awslabs/aws-lambda-powertools-typescript/commit/97339d9336ec67568e9e7fd079b3cfe006da1bba)) </details> <details> <summary>aws/aws-sdk-js-v3 (@​aws-sdk/client-cognito-identity-provider)</summary> ### [`v3.295.0`](https://github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-cognito-identity-provider/CHANGELOG.md#​32950-httpsgithubcomawsaws-sdk-js-v3comparev32940v32950-2023-03-20) [Compare Source](https://github.com/aws/aws-sdk-js-v3/compare/v3.294.0...v3.295.0) **Note:** Version bump only for package [@​aws-sdk/client-cognito-identity-provider](https://github.com/aws-sdk/client-cognito-identity-provider) </details> <details> <summary>aws/aws-sdk-js-v3 (@​aws-sdk/client-s3)</summary> ### [`v3.295.0`](https://github.com/aws/aws-sdk-js-v3/blob/HEAD/clients/client-s3/CHANGELOG.md#​32950-httpsgithubcomawsaws-sdk-js-v3comparev32940v32950-2023-03-20) [Compare Source](https://github.com/aws/aws-sdk-js-v3/compare/v3.294.0...v3.295.0) **Note:** Version bump only for package [@​aws-sdk/client-s3](https://github.com/aws-sdk/client-s3) </details> <details> <summary>trpc/trpc</summary> ### [`v10.17.0`](https://github.com/trpc/trpc/releases/tag/v10.17.0) [Compare Source](https://github.com/trpc/trpc/compare/v10.16.0...v10.17.0) ##### What's Changed - feat(server): add support for metadata merging by [@​Nick-Lucas](https://github.com/Nick-Lucas) in [https://github.com/trpc/trpc/pull/3978](https://github.com/trpc/trpc/pull/3978) - feat(server): add scale (input/output validator) support by [@​harrysolovay](https://github.com/harrysolovay) in [https://github.com/trpc/trpc/pull/3982](https://github.com/trpc/trpc/pull/3982) ##### New Contributors - [@​RogerBetter](https://github.com/RogerBetter) made their first contribution in [https://github.com/trpc/trpc/pull/3998](https://github.com/trpc/trpc/pull/3998) - [@​jharlowuk](https://github.com/jharlowuk) made their first contribution in [https://github.com/trpc/trpc/pull/4022](https://github.com/trpc/trpc/pull/4022) - [@​harrysolovay](https://github.com/harrysolovay) made their first contribution in [https://github.com/trpc/trpc/pull/3982](https://github.com/trpc/trpc/pull/3982) **Full Changelog**: trpc/trpc@v10.16.0...v10.17.0 </details> <details> <summary>typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)</summary> ### [`v5.56.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#​5560-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5550v5560-2023-03-20) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v5.55.0...v5.56.0) ##### Bug Fixes - **eslint-plugin:** \[member-ordering] check order when optionalityOrder is present with no optional members ([#​6619](https://github.com/typescript-eslint/typescript-eslint/issues/6619)) ([6aff431](https://github.com/typescript-eslint/typescript-eslint/commit/6aff431668eb0d25aa74b527cbe458f9dcd0d92a)) - **eslint-plugin:** \[no-misused-promises] avoid unnecessary calls to getContextualType ([#​6193](https://github.com/typescript-eslint/typescript-eslint/issues/6193)) ([745cfe4](https://github.com/typescript-eslint/typescript-eslint/commit/745cfe4a35319416b3c307ee9fd57c63bf1660cd)) - **eslint-plugin:** \[no-misused-promises] fix incorrect detection of void functions in JSX attributes ([#​6638](https://github.com/typescript-eslint/typescript-eslint/issues/6638)) ([9e41cee](https://github.com/typescript-eslint/typescript-eslint/commit/9e41ceeaea3bf266e5114cfb1855e70a1a13284b)) - **eslint-plugin:** \[strict-boolean-expression] support falsy and truthy literals simultaneously ([#​6672](https://github.com/typescript-eslint/typescript-eslint/issues/6672)) ([62ef487](https://github.com/typescript-eslint/typescript-eslint/commit/62ef487a99010827e99a792db5e565ad7c1d6220)) - **eslint-plugin:** \[strict-boolean-expressions] handle truthy enums ([#​6618](https://github.com/typescript-eslint/typescript-eslint/issues/6618)) ([0d0639f](https://github.com/typescript-eslint/typescript-eslint/commit/0d0639fb25e5ac8d7b5e4ceac4273e17e8ee0249)) - **eslint-plugin:** add TSPropertySignature with TSFunctionType annotation to typeMethod selector ([#​6645](https://github.com/typescript-eslint/typescript-eslint/issues/6645)) ([3fc5c63](https://github.com/typescript-eslint/typescript-eslint/commit/3fc5c63f87bfd9d95f7e51fddc7ef16a6c3c5662)) ##### Features - **eslint-plugin:** add allowNever support to restrict-template-expressions ([#​6554](https://github.com/typescript-eslint/typescript-eslint/issues/6554)) ([423f164](https://github.com/typescript-eslint/typescript-eslint/commit/423f1642424293488fa03a52777c0df73a40e5fd)) </details> <details> <summary>typescript-eslint/typescript-eslint (@​typescript-eslint/parser)</summary> ### [`v5.56.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#​5560-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5550v5560-2023-03-20) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v5.55.0...v5.56.0) **Note:** Version bump only for package [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) </details> <details> <summary>prettier/eslint-config-prettier</summary> ### [`v8.8.0`](https://github.com/prettier/eslint-config-prettier/blob/HEAD/CHANGELOG.md#Version-880-2023-03-20) [Compare Source](https://github.com/prettier/eslint-config-prettier/compare/v8.7.0...v8.8.0) - Added: \[[@​typescript-eslint/lines-around-comment](https://github.com/typescript-eslint/lines-around-comment)]. Thanks to [@​ttionya](https://github.com/ttionya)! </details> <details> <summary>esbuild-kit/tsx</summary> ### [`v3.12.6`](https://github.com/esbuild-kit/tsx/releases/tag/v3.12.6) [Compare Source](https://github.com/esbuild-kit/tsx/compare/v3.12.5...v3.12.6) ##### Bug Fixes - **repl:** suppress autocomplete transformation errors ([#​205](https://github.com/esbuild-kit/tsx/issues/205)) ([8e1958d](https://github.com/esbuild-kit/tsx/commit/8e1958db41addf52bbe10505099b9e8ed223e62c)) </details> <details> <summary>vercel/turbo</summary> ### [`v1.8.4`](https://github.com/vercel/turbo/releases/tag/v1.8.4): Turborepo v1.8.4 [Compare Source](https://github.com/vercel/turbo/compare/v1.8.3...v1.8.4) #### What's Changed ##### Changelog - release(turborepo): 1.8.3 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/3989](https://github.com/vercel/turbo/pull/3989) - enable rust codepath in release process by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/3903](https://github.com/vercel/turbo/pull/3903) - Add tests to validate errors-only is working by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3945](https://github.com/vercel/turbo/pull/3945) - fix: make inputs relative to workspace root by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/3993](https://github.com/vercel/turbo/pull/3993) - Include expanded inputs config for each task in dry run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3957](https://github.com/vercel/turbo/pull/3957) - fix prisma example ReferenceError by [@​mkreuzmayr](https://github.com/mkreuzmayr) in [https://github.com/vercel/turbo/pull/3947](https://github.com/vercel/turbo/pull/3947) - feat(codemod): support workspace configs by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/3992](https://github.com/vercel/turbo/pull/3992) - fix: scm make patterns relative by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/3996](https://github.com/vercel/turbo/pull/3996) - feat(cli): support --no-update-notifier by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4003](https://github.com/vercel/turbo/pull/4003) - feat(docs): move reference up in priority ([#​4007](https://github.com/vercel/turbo/issues/4007) by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4007](https://github.com/vercel/turbo/pull/4007) - Add inferred framework to Dry Run by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3941](https://github.com/vercel/turbo/pull/3941) - Fix prettier by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4022](https://github.com/vercel/turbo/pull/4022) - Build Requirements for Ubuntu by [@​tm1000](https://github.com/tm1000) in [https://github.com/vercel/turbo/pull/4010](https://github.com/vercel/turbo/pull/4010) - Add missing function from port. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4027](https://github.com/vercel/turbo/pull/4027) - Calculate TaskHash while constructing PackageTask by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4016](https://github.com/vercel/turbo/pull/4016) - Refactor env package to breakdown env vars for task by source by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4021](https://github.com/vercel/turbo/pull/4021) - Add task + framework env vars into Dry Run Summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4020](https://github.com/vercel/turbo/pull/4020) - fix(codemod): don’t set outputs for cache:false by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4029](https://github.com/vercel/turbo/pull/4029) - Client timeout by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/3998](https://github.com/vercel/turbo/pull/3998) - Add turboVersion into dry run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4047](https://github.com/vercel/turbo/pull/4047) - Assign Framework to PackageTask struct by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4050](https://github.com/vercel/turbo/pull/4050) - Create runsummary package and rename DryRunSummary to RunSummary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4052](https://github.com/vercel/turbo/pull/4052) - Revert "enable rust codepath in release process" by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4068](https://github.com/vercel/turbo/pull/4068) - release(turborepo): 1.8.4-canary.0 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4065](https://github.com/vercel/turbo/pull/4065) - release(turborepo): 1.8.4-canary.1 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4070](https://github.com/vercel/turbo/pull/4070) - Log the json that we are sending to the go binary by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4067](https://github.com/vercel/turbo/pull/4067) - Generate a run summary file on turbo run by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4069](https://github.com/vercel/turbo/pull/4069) - fix: ensure that memory is free'd using the same allocator by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/4101](https://github.com/vercel/turbo/pull/4101) - Parallel cache state by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4110](https://github.com/vercel/turbo/pull/4110) - release(turborepo): 1.8.4-canary.2 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4113](https://github.com/vercel/turbo/pull/4113) - chore: Bumping fsnotify version by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/3956](https://github.com/vercel/turbo/pull/3956) - Add globalenv to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4090](https://github.com/vercel/turbo/pull/4090) - Flag on the Go sandwich, attempt [#​2](https://github.com/vercel/turbo/issues/2) by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4115](https://github.com/vercel/turbo/pull/4115) - Re-repair Root Inference by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4049](https://github.com/vercel/turbo/pull/4049) - Correct argument to local `turbo` inference. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4122](https://github.com/vercel/turbo/pull/4122) - release(turborepo): 1.8.4-canary.3 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4125](https://github.com/vercel/turbo/pull/4125) - Revert "Flag on the Go sandwich, attempt [#​2](https://github.com/vercel/turbo/issues/2)" ([#​4127](https://github.com/vercel/turbo/issues/4127) by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4127](https://github.com/vercel/turbo/pull/4127) - Support exclusions in inputs by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4066](https://github.com/vercel/turbo/pull/4066) - release(turborepo): 1.8.4-canary.4 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4131](https://github.com/vercel/turbo/pull/4131) - Add TaskExecutionSummary to Run Summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4116](https://github.com/vercel/turbo/pull/4116) - Amend incorrect file referenced in Getting Started by [@​richardjzhang](https://github.com/richardjzhang) in [https://github.com/vercel/turbo/pull/4148](https://github.com/vercel/turbo/pull/4148) - feat(turbo-ignore): update logging by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4154](https://github.com/vercel/turbo/pull/4154) - fix sentence by [@​bhatvikrant](https://github.com/bhatvikrant) in [https://github.com/vercel/turbo/pull/4158](https://github.com/vercel/turbo/pull/4158) - fix(create-turbo): update create-turbo eslint template ([#​4160](https://github.com/vercel/turbo/issues/4160) by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4160](https://github.com/vercel/turbo/pull/4160) - Add log to go binary by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4157](https://github.com/vercel/turbo/pull/4157) - Add expandedOutputs to run summary of each task by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4095](https://github.com/vercel/turbo/pull/4095) - Remove env-var linting comments. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/4162](https://github.com/vercel/turbo/pull/4162) - Fix integration tests to add new log message by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4164](https://github.com/vercel/turbo/pull/4164) - chore(deps): update mysql docker tag to v8.0.32 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turbo/pull/4071](https://github.com/vercel/turbo/pull/4071) - fix(examples): update kitchen-sink dev task by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4177](https://github.com/vercel/turbo/pull/4177) - Ensure we record the lockfile name when there's an error unmarshalling by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4180](https://github.com/vercel/turbo/pull/4180) - Add dependencies and dependent tasks into run summaries by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4165](https://github.com/vercel/turbo/pull/4165) - update lockfile due to removed packages by [@​sokra](https://github.com/sokra) in [https://github.com/vercel/turbo/pull/4192](https://github.com/vercel/turbo/pull/4192) - Downgrade git warning to debug. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4193](https://github.com/vercel/turbo/pull/4193) - fix(turborepo): race condition in config tests by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4186](https://github.com/vercel/turbo/pull/4186) - Run integration tests in parallel by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4044](https://github.com/vercel/turbo/pull/4044) - fix: SCM relative paths in nested turborepo by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4184](https://github.com/vercel/turbo/pull/4184) - Throw an error when a task graph cannot run to completion. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4205](https://github.com/vercel/turbo/pull/4205) - fix: Turbo SCM with Windows paths by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4207](https://github.com/vercel/turbo/pull/4207) - chore: Flip the Rust switch by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4181](https://github.com/vercel/turbo/pull/4181) - gracefully handle ctrlc on windows by proactively the killing go process by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/4196](https://github.com/vercel/turbo/pull/4196) - release(turborepo): 1.8.4-canary.5 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4215](https://github.com/vercel/turbo/pull/4215) - Fix forward inference test parallelization. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4203](https://github.com/vercel/turbo/pull/4203) - Add pass through args to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4209](https://github.com/vercel/turbo/pull/4209) - Fix duplicate items in task summaries by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4217](https://github.com/vercel/turbo/pull/4217) - Add a hash of external dependencies to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4212](https://github.com/vercel/turbo/pull/4212) - fix: prune pnpm patched dependencies with peer dependencies by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/4200](https://github.com/vercel/turbo/pull/4200) - Add a version to the run summary schema by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4230](https://github.com/vercel/turbo/pull/4230) - release(turborepo): 1.8.4-canary.6 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4234](https://github.com/vercel/turbo/pull/4234) - chore(deps): update dependency tsx to v3.12.5 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turbo/pull/3962](https://github.com/vercel/turbo/pull/3962) - Check that root commands cannot invoke turbo by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4223](https://github.com/vercel/turbo/pull/4223) - Fix error message documentation by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4094](https://github.com/vercel/turbo/pull/4094) - Filter out summaries of tasks that didn't execute by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4238](https://github.com/vercel/turbo/pull/4238) - docs: Document common question around turborepo-ffi by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4232](https://github.com/vercel/turbo/pull/4232) - feat(examples): add vercel template to meta by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4242](https://github.com/vercel/turbo/pull/4242) - refactor: Removed includeUntracked because it's always set to true by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4243](https://github.com/vercel/turbo/pull/4243) #### New Contributors - [@​mkreuzmayr](https://github.com/mkreuzmayr) made their first contribution in [https://github.com/vercel/turbo/pull/3947](https://github.com/vercel/turbo/pull/3947) - [@​tm1000](https://github.com/tm1000) made their first contribution in [https://github.com/vercel/turbo/pull/4010](https://github.com/vercel/turbo/pull/4010) - [@​timneutkens](https://github.com/timneutkens) made their first contribution in [https://github.com/vercel/turbo/pull/4080](https://github.com/vercel/turbo/pull/4080) - [@​tunguyen-ct](https://github.com/tunguyen-ct) made their first contribution in [https://github.com/vercel/turbo/pull/4097](https://github.com/vercel/turbo/pull/4097) - [@​richardjzhang](https://github.com/richardjzhang) made their first contribution in [https://github.com/vercel/turbo/pull/4148](https://github.com/vercel/turbo/pull/4148) - [@​bhatvikrant](https://github.com/bhatvikrant) made their first contribution in [https://github.com/vercel/turbo/pull/4158](https://github.com/vercel/turbo/pull/4158) **Full Changelog**: vercel/turborepo@v1.8.3...v1.8.4 </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://github.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: #312 Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> 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://turbo.build/repo) ([source](https://github.com/vercel/turbo)) | [`1.8.3` -> `1.8.4`](https://renovatebot.com/diffs/npm/turbo/1.8.3/1.8.4) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/compatibility-slim/1.8.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/confidence-slim/1.8.3)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/turbo</summary> ### [`v1.8.4`](https://github.com/vercel/turbo/releases/tag/v1.8.4): Turborepo v1.8.4 [Compare Source](https://github.com/vercel/turbo/compare/v1.8.3...v1.8.4) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v1.8.4 --> ##### What's Changed ##### Changelog - release(turborepo): 1.8.3 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/3989](https://github.com/vercel/turbo/pull/3989) - enable rust codepath in release process by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/3903](https://github.com/vercel/turbo/pull/3903) - Add tests to validate errors-only is working by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3945](https://github.com/vercel/turbo/pull/3945) - fix: make inputs relative to workspace root by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/3993](https://github.com/vercel/turbo/pull/3993) - Include expanded inputs config for each task in dry run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3957](https://github.com/vercel/turbo/pull/3957) - fix prisma example ReferenceError by [@​mkreuzmayr](https://github.com/mkreuzmayr) in [https://github.com/vercel/turbo/pull/3947](https://github.com/vercel/turbo/pull/3947) - feat(codemod): support workspace configs by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/3992](https://github.com/vercel/turbo/pull/3992) - fix: scm make patterns relative by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/3996](https://github.com/vercel/turbo/pull/3996) - feat(cli): support --no-update-notifier by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4003](https://github.com/vercel/turbo/pull/4003) - feat(docs): move reference up in priority ([#​4007](https://github.com/vercel/turbo/issues/4007) by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4007](https://github.com/vercel/turbo/pull/4007) - Add inferred framework to Dry Run by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3941](https://github.com/vercel/turbo/pull/3941) - Fix prettier by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4022](https://github.com/vercel/turbo/pull/4022) - Build Requirements for Ubuntu by [@​tm1000](https://github.com/tm1000) in [https://github.com/vercel/turbo/pull/4010](https://github.com/vercel/turbo/pull/4010) - Add missing function from port. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4027](https://github.com/vercel/turbo/pull/4027) - Calculate TaskHash while constructing PackageTask by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4016](https://github.com/vercel/turbo/pull/4016) - Refactor env package to breakdown env vars for task by source by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4021](https://github.com/vercel/turbo/pull/4021) - Add task + framework env vars into Dry Run Summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4020](https://github.com/vercel/turbo/pull/4020) - fix(codemod): don’t set outputs for cache:false by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4029](https://github.com/vercel/turbo/pull/4029) - Client timeout by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/3998](https://github.com/vercel/turbo/pull/3998) - Add turboVersion into dry run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4047](https://github.com/vercel/turbo/pull/4047) - Assign Framework to PackageTask struct by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4050](https://github.com/vercel/turbo/pull/4050) - Create runsummary package and rename DryRunSummary to RunSummary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4052](https://github.com/vercel/turbo/pull/4052) - Revert "enable rust codepath in release process" by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4068](https://github.com/vercel/turbo/pull/4068) - release(turborepo): 1.8.4-canary.0 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4065](https://github.com/vercel/turbo/pull/4065) - release(turborepo): 1.8.4-canary.1 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4070](https://github.com/vercel/turbo/pull/4070) - Log the json that we are sending to the go binary by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4067](https://github.com/vercel/turbo/pull/4067) - Generate a run summary file on turbo run by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4069](https://github.com/vercel/turbo/pull/4069) - fix: ensure that memory is free'd using the same allocator by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/4101](https://github.com/vercel/turbo/pull/4101) - Parallel cache state by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4110](https://github.com/vercel/turbo/pull/4110) - release(turborepo): 1.8.4-canary.2 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4113](https://github.com/vercel/turbo/pull/4113) - chore: Bumping fsnotify version by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/3956](https://github.com/vercel/turbo/pull/3956) - Add globalenv to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4090](https://github.com/vercel/turbo/pull/4090) - Flag on the Go sandwich, attempt [#​2](https://github.com/vercel/turbo/issues/2) by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4115](https://github.com/vercel/turbo/pull/4115) - Re-repair Root Inference by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4049](https://github.com/vercel/turbo/pull/4049) - Correct argument to local `turbo` inference. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4122](https://github.com/vercel/turbo/pull/4122) - release(turborepo): 1.8.4-canary.3 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4125](https://github.com/vercel/turbo/pull/4125) - Revert "Flag on the Go sandwich, attempt [#​2](https://github.com/vercel/turbo/issues/2)" ([#​4127](https://github.com/vercel/turbo/issues/4127) by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4127](https://github.com/vercel/turbo/pull/4127) - Support exclusions in inputs by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4066](https://github.com/vercel/turbo/pull/4066) - release(turborepo): 1.8.4-canary.4 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4131](https://github.com/vercel/turbo/pull/4131) - Add TaskExecutionSummary to Run Summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4116](https://github.com/vercel/turbo/pull/4116) - Amend incorrect file referenced in Getting Started by [@​richardjzhang](https://github.com/richardjzhang) in [https://github.com/vercel/turbo/pull/4148](https://github.com/vercel/turbo/pull/4148) - feat(turbo-ignore): update logging by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4154](https://github.com/vercel/turbo/pull/4154) - fix sentence by [@​bhatvikrant](https://github.com/bhatvikrant) in [https://github.com/vercel/turbo/pull/4158](https://github.com/vercel/turbo/pull/4158) - fix(create-turbo): update create-turbo eslint template ([#​4160](https://github.com/vercel/turbo/issues/4160) by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4160](https://github.com/vercel/turbo/pull/4160) - Add log to go binary by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4157](https://github.com/vercel/turbo/pull/4157) - Add expandedOutputs to run summary of each task by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4095](https://github.com/vercel/turbo/pull/4095) - Remove env-var linting comments. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/4162](https://github.com/vercel/turbo/pull/4162) - Fix integration tests to add new log message by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4164](https://github.com/vercel/turbo/pull/4164) - chore(deps): update mysql docker tag to v8.0.32 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turbo/pull/4071](https://github.com/vercel/turbo/pull/4071) - fix(examples): update kitchen-sink dev task by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4177](https://github.com/vercel/turbo/pull/4177) - Ensure we record the lockfile name when there's an error unmarshalling by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4180](https://github.com/vercel/turbo/pull/4180) - Add dependencies and dependent tasks into run summaries by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4165](https://github.com/vercel/turbo/pull/4165) - update lockfile due to removed packages by [@​sokra](https://github.com/sokra) in [https://github.com/vercel/turbo/pull/4192](https://github.com/vercel/turbo/pull/4192) - Downgrade git warning to debug. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4193](https://github.com/vercel/turbo/pull/4193) - fix(turborepo): race condition in config tests by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4186](https://github.com/vercel/turbo/pull/4186) - Run integration tests in parallel by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4044](https://github.com/vercel/turbo/pull/4044) - fix: SCM relative paths in nested turborepo by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4184](https://github.com/vercel/turbo/pull/4184) - Throw an error when a task graph cannot run to completion. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4205](https://github.com/vercel/turbo/pull/4205) - fix: Turbo SCM with Windows paths by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4207](https://github.com/vercel/turbo/pull/4207) - chore: Flip the Rust switch by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4181](https://github.com/vercel/turbo/pull/4181) - gracefully handle ctrlc on windows by proactively the killing go process by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/4196](https://github.com/vercel/turbo/pull/4196) - release(turborepo): 1.8.4-canary.5 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4215](https://github.com/vercel/turbo/pull/4215) - Fix forward inference test parallelization. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4203](https://github.com/vercel/turbo/pull/4203) - Add pass through args to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4209](https://github.com/vercel/turbo/pull/4209) - Fix duplicate items in task summaries by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4217](https://github.com/vercel/turbo/pull/4217) - Add a hash of external dependencies to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4212](https://github.com/vercel/turbo/pull/4212) - fix: prune pnpm patched dependencies with peer dependencies by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/4200](https://github.com/vercel/turbo/pull/4200) - Add a version to the run summary schema by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4230](https://github.com/vercel/turbo/pull/4230) - release(turborepo): 1.8.4-canary.6 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4234](https://github.com/vercel/turbo/pull/4234) - chore(deps): update dependency tsx to v3.12.5 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turbo/pull/3962](https://github.com/vercel/turbo/pull/3962) - Check that root commands cannot invoke turbo by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4223](https://github.com/vercel/turbo/pull/4223) - Fix error message documentation by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4094](https://github.com/vercel/turbo/pull/4094) - Filter out summaries of tasks that didn't execute by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4238](https://github.com/vercel/turbo/pull/4238) - docs: Document common question around turborepo-ffi by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4232](https://github.com/vercel/turbo/pull/4232) - feat(examples): add vercel template to meta by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4242](https://github.com/vercel/turbo/pull/4242) - refactor: Removed includeUntracked because it's always set to true by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4243](https://github.com/vercel/turbo/pull/4243) ##### New Contributors - [@​mkreuzmayr](https://github.com/mkreuzmayr) made their first contribution in [https://github.com/vercel/turbo/pull/3947](https://github.com/vercel/turbo/pull/3947) - [@​tm1000](https://github.com/tm1000) made their first contribution in [https://github.com/vercel/turbo/pull/4010](https://github.com/vercel/turbo/pull/4010) - [@​timneutkens](https://github.com/timneutkens) made their first contribution in [https://github.com/vercel/turbo/pull/4080](https://github.com/vercel/turbo/pull/4080) - [@​tunguyen-ct](https://github.com/tunguyen-ct) made their first contribution in [https://github.com/vercel/turbo/pull/4097](https://github.com/vercel/turbo/pull/4097) - [@​richardjzhang](https://github.com/richardjzhang) made their first contribution in [https://github.com/vercel/turbo/pull/4148](https://github.com/vercel/turbo/pull/4148) - [@​bhatvikrant](https://github.com/bhatvikrant) made their first contribution in [https://github.com/vercel/turbo/pull/4158](https://github.com/vercel/turbo/pull/4158) **Full Changelog**: vercel/turborepo@v1.8.3...v1.8.4 </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:eyJjcmVhdGVkSW5WZXIiOiIzNS4xNC4yIiwidXBkYXRlZEluVmVyIjoiMzUuMTQuMiJ9--> 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 | |---|---|---|---|---|---| | [@codemirror/legacy-modes](https://github.com/codemirror/legacy-modes) | [`6.3.1` -> `6.3.2`](https://renovatebot.com/diffs/npm/@codemirror%2flegacy-modes/6.3.1/6.3.2) | [![age](https://badges.renovateapi.com/packages/npm/@codemirror%2flegacy-modes/6.3.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@codemirror%2flegacy-modes/6.3.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@codemirror%2flegacy-modes/6.3.2/compatibility-slim/6.3.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@codemirror%2flegacy-modes/6.3.2/confidence-slim/6.3.1)](https://docs.renovatebot.com/merge-confidence/) | | [@mikro-orm/cli](https://mikro-orm.io) ([source](https://github.com/mikro-orm/mikro-orm)) | [`5.6.14` -> `5.6.15`](https://renovatebot.com/diffs/npm/@mikro-orm%2fcli/5.6.14/5.6.15) | [![age](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fcli/5.6.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fcli/5.6.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fcli/5.6.15/compatibility-slim/5.6.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fcli/5.6.15/confidence-slim/5.6.14)](https://docs.renovatebot.com/merge-confidence/) | | [@mikro-orm/core](https://mikro-orm.io) ([source](https://github.com/mikro-orm/mikro-orm)) | [`5.6.14` -> `5.6.15`](https://renovatebot.com/diffs/npm/@mikro-orm%2fcore/5.6.14/5.6.15) | [![age](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fcore/5.6.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fcore/5.6.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fcore/5.6.15/compatibility-slim/5.6.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fcore/5.6.15/confidence-slim/5.6.14)](https://docs.renovatebot.com/merge-confidence/) | | [@mikro-orm/mariadb](https://mikro-orm.io) ([source](https://github.com/mikro-orm/mikro-orm)) | [`5.6.14` -> `5.6.15`](https://renovatebot.com/diffs/npm/@mikro-orm%2fmariadb/5.6.14/5.6.15) | [![age](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmariadb/5.6.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmariadb/5.6.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmariadb/5.6.15/compatibility-slim/5.6.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmariadb/5.6.15/confidence-slim/5.6.14)](https://docs.renovatebot.com/merge-confidence/) | | [@mikro-orm/migrations](https://mikro-orm.io) ([source](https://github.com/mikro-orm/mikro-orm)) | [`5.6.14` -> `5.6.15`](https://renovatebot.com/diffs/npm/@mikro-orm%2fmigrations/5.6.14/5.6.15) | [![age](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmigrations/5.6.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmigrations/5.6.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmigrations/5.6.15/compatibility-slim/5.6.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmigrations/5.6.15/confidence-slim/5.6.14)](https://docs.renovatebot.com/merge-confidence/) | | [@mikro-orm/mysql](https://mikro-orm.io) ([source](https://github.com/mikro-orm/mikro-orm)) | [`5.6.14` -> `5.6.15`](https://renovatebot.com/diffs/npm/@mikro-orm%2fmysql/5.6.14/5.6.15) | [![age](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmysql/5.6.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmysql/5.6.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmysql/5.6.15/compatibility-slim/5.6.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fmysql/5.6.15/confidence-slim/5.6.14)](https://docs.renovatebot.com/merge-confidence/) | | [@mikro-orm/seeder](https://mikro-orm.io) ([source](https://github.com/mikro-orm/mikro-orm)) | [`5.6.14` -> `5.6.15`](https://renovatebot.com/diffs/npm/@mikro-orm%2fseeder/5.6.14/5.6.15) | [![age](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fseeder/5.6.15/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fseeder/5.6.15/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fseeder/5.6.15/compatibility-slim/5.6.14)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@mikro-orm%2fseeder/5.6.15/confidence-slim/5.6.14)](https://docs.renovatebot.com/merge-confidence/) | | [@pnpm/lockfile-file](https://github.com/pnpm/pnpm/blob/main/lockfile/lockfile-file#readme) ([source](https://github.com/pnpm/pnpm)) | [`7.0.5` -> `7.0.6`](https://renovatebot.com/diffs/npm/@pnpm%2flockfile-file/7.0.5/7.0.6) | [![age](https://badges.renovateapi.com/packages/npm/@pnpm%2flockfile-file/7.0.6/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@pnpm%2flockfile-file/7.0.6/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@pnpm%2flockfile-file/7.0.6/compatibility-slim/7.0.5)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@pnpm%2flockfile-file/7.0.6/confidence-slim/7.0.5)](https://docs.renovatebot.com/merge-confidence/) | | [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/jest) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped)) | [`29.4.0` -> `29.5.0`](https://renovatebot.com/diffs/npm/@types%2fjest/29.4.0/29.5.0) | [![age](https://badges.renovateapi.com/packages/npm/@types%2fjest/29.5.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2fjest/29.5.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2fjest/29.5.0/compatibility-slim/29.4.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2fjest/29.5.0/confidence-slim/29.4.0)](https://docs.renovatebot.com/merge-confidence/) | | [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped)) | [`18.15.1` -> `18.15.5`](https://renovatebot.com/diffs/npm/@types%2fnode/18.15.1/18.15.5) | [![age](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.15.5/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.15.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.15.5/compatibility-slim/18.15.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.15.5/confidence-slim/18.15.1)](https://docs.renovatebot.com/merge-confidence/) | | [@types/ssh2](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/ssh2) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped)) | [`1.11.7` -> `1.11.8`](https://renovatebot.com/diffs/npm/@types%2fssh2/1.11.7/1.11.8) | [![age](https://badges.renovateapi.com/packages/npm/@types%2fssh2/1.11.8/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2fssh2/1.11.8/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2fssh2/1.11.8/compatibility-slim/1.11.7)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2fssh2/1.11.8/confidence-slim/1.11.7)](https://docs.renovatebot.com/merge-confidence/) | | [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint) | [`5.54.1` -> `5.56.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/5.54.1/5.56.0) | [![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.56.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.56.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.56.0/compatibility-slim/5.54.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2feslint-plugin/5.56.0/confidence-slim/5.54.1)](https://docs.renovatebot.com/merge-confidence/) | | [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint) | [`5.54.1` -> `5.56.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/5.54.1/5.56.0) | [![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.56.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.56.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.56.0/compatibility-slim/5.54.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fparser/5.56.0/confidence-slim/5.54.1)](https://docs.renovatebot.com/merge-confidence/) | | [antd](https://ant.design) ([source](https://github.com/ant-design/ant-design)) | [`5.3.0` -> `5.3.2`](https://renovatebot.com/diffs/npm/antd/5.3.0/5.3.2) | [![age](https://badges.renovateapi.com/packages/npm/antd/5.3.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/antd/5.3.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/antd/5.3.2/compatibility-slim/5.3.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/antd/5.3.2/confidence-slim/5.3.0)](https://docs.renovatebot.com/merge-confidence/) | | [fastify](https://www.fastify.io/) ([source](https://github.com/fastify/fastify)) | [`4.14.1` -> `4.15.0`](https://renovatebot.com/diffs/npm/fastify/4.14.1/4.15.0) | [![age](https://badges.renovateapi.com/packages/npm/fastify/4.15.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/fastify/4.15.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/fastify/4.15.0/compatibility-slim/4.14.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/fastify/4.15.0/confidence-slim/4.14.1)](https://docs.renovatebot.com/merge-confidence/) | | [liquidjs](https://github.com/harttle/liquidjs) | [`10.6.1` -> `10.6.2`](https://renovatebot.com/diffs/npm/liquidjs/10.6.1/10.6.2) | [![age](https://badges.renovateapi.com/packages/npm/liquidjs/10.6.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/liquidjs/10.6.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/liquidjs/10.6.2/compatibility-slim/10.6.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/liquidjs/10.6.2/confidence-slim/10.6.1)](https://docs.renovatebot.com/merge-confidence/) | | [node-mocks-http](https://github.com/howardabrams/node-mocks-http) | [`1.12.1` -> `1.12.2`](https://renovatebot.com/diffs/npm/node-mocks-http/1.12.1/1.12.2) | [![age](https://badges.renovateapi.com/packages/npm/node-mocks-http/1.12.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/node-mocks-http/1.12.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/node-mocks-http/1.12.2/compatibility-slim/1.12.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/node-mocks-http/1.12.2/confidence-slim/1.12.1)](https://docs.renovatebot.com/merge-confidence/) | | [pm2](http://pm2.keymetrics.io/) ([source](https://github.com/Unitech/pm2)) | [`5.2.2` -> `5.3.0`](https://renovatebot.com/diffs/npm/pm2/5.2.2/5.3.0) | [![age](https://badges.renovateapi.com/packages/npm/pm2/5.3.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/pm2/5.3.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/pm2/5.3.0/compatibility-slim/5.2.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/pm2/5.3.0/confidence-slim/5.2.2)](https://docs.renovatebot.com/merge-confidence/) | | [pnpm](https://pnpm.io) ([source](https://github.com/pnpm/pnpm)) | [`7.29.1` -> `7.30.0`](https://renovatebot.com/diffs/npm/pnpm/7.29.1/7.30.0) | [![age](https://badges.renovateapi.com/packages/npm/pnpm/7.30.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/pnpm/7.30.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/pnpm/7.30.0/compatibility-slim/7.29.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/pnpm/7.30.0/confidence-slim/7.29.1)](https://docs.renovatebot.com/merge-confidence/) | | [styled-components](https://styled-components.com) ([source](https://github.com/styled-components/styled-components)) | [`5.3.8` -> `5.3.9`](https://renovatebot.com/diffs/npm/styled-components/5.3.8/5.3.9) | [![age](https://badges.renovateapi.com/packages/npm/styled-components/5.3.9/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/styled-components/5.3.9/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/styled-components/5.3.9/compatibility-slim/5.3.8)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/styled-components/5.3.9/confidence-slim/5.3.8)](https://docs.renovatebot.com/merge-confidence/) | | [turbo](https://turbo.build/repo) ([source](https://github.com/vercel/turbo)) | [`1.8.3` -> `1.8.4`](https://renovatebot.com/diffs/npm/turbo/1.8.3/1.8.4) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/compatibility-slim/1.8.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.8.4/confidence-slim/1.8.3)](https://docs.renovatebot.com/merge-confidence/) | | [webpack](https://github.com/webpack/webpack) | [`5.76.1` -> `5.76.2`](https://renovatebot.com/diffs/npm/webpack/5.76.1/5.76.2) | [![age](https://badges.renovateapi.com/packages/npm/webpack/5.76.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/webpack/5.76.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/webpack/5.76.2/compatibility-slim/5.76.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/webpack/5.76.2/confidence-slim/5.76.1)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>codemirror/legacy-modes</summary> ### [`v6.3.2`](https://github.com/codemirror/legacy-modes/blob/HEAD/CHANGELOG.md#​632-2023-03-20) [Compare Source](https://github.com/codemirror/legacy-modes/compare/6.3.1...6.3.2) ##### Bug fixes Fix tokenizing of character literals in the Scala mode. </details> <details> <summary>mikro-orm/mikro-orm</summary> ### [`v5.6.15`](https://github.com/mikro-orm/mikro-orm/blob/HEAD/CHANGELOG.md#​5615-httpsgithubcommikro-ormmikro-ormcomparev5614v5615-2023-03-18) [Compare Source](https://github.com/mikro-orm/mikro-orm/compare/v5.6.14...v5.6.15) ##### Bug Fixes - **core:** deduplicate columns in insert queries ([db734d6](https://github.com/mikro-orm/mikro-orm/commit/db734d69b23a97f1cca186dba6629b112d788b16)) - **core:** fix nested inlined embedded property hydration ([2bbcb47](https://github.com/mikro-orm/mikro-orm/commit/2bbcb477890fc87cb2a349922d83bfdb54f68b59)), closes [#​4145](https://github.com/mikro-orm/mikro-orm/issues/4145) - **core:** fix snapshot of relation properties loaded via joined strategy ([6015f3f](https://github.com/mikro-orm/mikro-orm/commit/6015f3fb2b09ca920d0fbe3329733d3d5f8d134e)), closes [#​4129](https://github.com/mikro-orm/mikro-orm/issues/4129) - **core:** respect explicit `unsigned` option ([#​4126](https://github.com/mikro-orm/mikro-orm/issues/4126)) ([846a57d](https://github.com/mikro-orm/mikro-orm/commit/846a57dc3baffe8897065710a6368efd91985401)) - **sqlite:** fix detecting multi-line `returning` queries ([ba1a5fc](https://github.com/mikro-orm/mikro-orm/commit/ba1a5fc95c611ffd2c393e7dc8763255fa0ca6c7)), closes [#​4133](https://github.com/mikro-orm/mikro-orm/issues/4133) </details> <details> <summary>typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)</summary> ### [`v5.56.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#​5560-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5550v5560-2023-03-20) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v5.55.0...v5.56.0) ##### Bug Fixes - **eslint-plugin:** \[member-ordering] check order when optionalityOrder is present with no optional members ([#​6619](https://github.com/typescript-eslint/typescript-eslint/issues/6619)) ([6aff431](https://github.com/typescript-eslint/typescript-eslint/commit/6aff431668eb0d25aa74b527cbe458f9dcd0d92a)) - **eslint-plugin:** \[no-misused-promises] avoid unnecessary calls to getContextualType ([#​6193](https://github.com/typescript-eslint/typescript-eslint/issues/6193)) ([745cfe4](https://github.com/typescript-eslint/typescript-eslint/commit/745cfe4a35319416b3c307ee9fd57c63bf1660cd)) - **eslint-plugin:** \[no-misused-promises] fix incorrect detection of void functions in JSX attributes ([#​6638](https://github.com/typescript-eslint/typescript-eslint/issues/6638)) ([9e41cee](https://github.com/typescript-eslint/typescript-eslint/commit/9e41ceeaea3bf266e5114cfb1855e70a1a13284b)) - **eslint-plugin:** \[strict-boolean-expression] support falsy and truthy literals simultaneously ([#​6672](https://github.com/typescript-eslint/typescript-eslint/issues/6672)) ([62ef487](https://github.com/typescript-eslint/typescript-eslint/commit/62ef487a99010827e99a792db5e565ad7c1d6220)) - **eslint-plugin:** \[strict-boolean-expressions] handle truthy enums ([#​6618](https://github.com/typescript-eslint/typescript-eslint/issues/6618)) ([0d0639f](https://github.com/typescript-eslint/typescript-eslint/commit/0d0639fb25e5ac8d7b5e4ceac4273e17e8ee0249)) - **eslint-plugin:** add TSPropertySignature with TSFunctionType annotation to typeMethod selector ([#​6645](https://github.com/typescript-eslint/typescript-eslint/issues/6645)) ([3fc5c63](https://github.com/typescript-eslint/typescript-eslint/commit/3fc5c63f87bfd9d95f7e51fddc7ef16a6c3c5662)) ##### Features - **eslint-plugin:** add allowNever support to restrict-template-expressions ([#​6554](https://github.com/typescript-eslint/typescript-eslint/issues/6554)) ([423f164](https://github.com/typescript-eslint/typescript-eslint/commit/423f1642424293488fa03a52777c0df73a40e5fd)) ### [`v5.55.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#​5550-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5541v5550-2023-03-13) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v5.54.1...v5.55.0) ##### Bug Fixes - **eslint-plugin:** \[no-confusing-void-expression] check sequence expressions for void is in last position ([#​6597](https://github.com/typescript-eslint/typescript-eslint/issues/6597)) ([d73d7d3](https://github.com/typescript-eslint/typescript-eslint/commit/d73d7d3904a088e2bf7127240dd1f1cefe325e69)) - **eslint-plugin:** \[no-unnecessary-boolean-literal-compare] fixer should handle parentheses ([#​6569](https://github.com/typescript-eslint/typescript-eslint/issues/6569)) ([2d8c196](https://github.com/typescript-eslint/typescript-eslint/commit/2d8c196294bcbe4989e310ec056a1a9000967600)) ##### Features - **eslint-plugin:** \[lines-around-comment] add extension rule ([#​5327](https://github.com/typescript-eslint/typescript-eslint/issues/5327)) ([d55211c](https://github.com/typescript-eslint/typescript-eslint/commit/d55211caf63e4731f103e94237b3449e88322bb9)) - **eslint-plugin:** \[member-ordering] add support for grouping readonly fields ([#​6349](https://github.com/typescript-eslint/typescript-eslint/issues/6349)) ([9d3bdfc](https://github.com/typescript-eslint/typescript-eslint/commit/9d3bdfcb2fe3d2b2c0b82d9587d52f0e2ef4e344)) - **eslint-plugin:** \[no-unnecessary-cond] check logical assignments ([#​6594](https://github.com/typescript-eslint/typescript-eslint/issues/6594)) ([dbc203a](https://github.com/typescript-eslint/typescript-eslint/commit/dbc203aeb64833a4d67bc62a578aa5533083af3d)) - update TypeScript to 5.0 RC ([#​6570](https://github.com/typescript-eslint/typescript-eslint/issues/6570)) ([36ef0e1](https://github.com/typescript-eslint/typescript-eslint/commit/36ef0e16f31810c27dda299e739d1610b689d3ad)) - use [@​eslint-community](https://github.com/eslint-community) dependencies ([#​6603](https://github.com/typescript-eslint/typescript-eslint/issues/6603)) ([5f6ed73](https://github.com/typescript-eslint/typescript-eslint/commit/5f6ed738a2b8c08878999e24477e3c206a0ade1b)) #### [5.54.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.54.0...v5.54.1) (2023-03-06) **Note:** Version bump only for package [@​typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/eslint-plugin) </details> <details> <summary>typescript-eslint/typescript-eslint (@​typescript-eslint/parser)</summary> ### [`v5.56.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#​5560-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5550v5560-2023-03-20) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v5.55.0...v5.56.0) **Note:** Version bump only for package [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) ### [`v5.55.0`](https://github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#​5550-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5541v5550-2023-03-13) [Compare Source](https://github.com/typescript-eslint/typescript-eslint/compare/v5.54.1...v5.55.0) ##### Features - **parser:** add exported meta object ([#​6586](https://github.com/typescript-eslint/typescript-eslint/issues/6586)) ([d05c3d8](https://github.com/typescript-eslint/typescript-eslint/commit/d05c3d8aa4093e88ffdfc2dbcff522eafbd455fb)) #### [5.54.1](https://github.com/typescript-eslint/typescript-eslint/compare/v5.54.0...v5.54.1) (2023-03-06) **Note:** Version bump only for package [@​typescript-eslint/parser](https://github.com/typescript-eslint/parser) </details> <details> <summary>ant-design/ant-design</summary> ### [`v5.3.2`](https://github.com/ant-design/ant-design/releases/tag/5.3.2) [Compare Source](https://github.com/ant-design/ant-design/compare/5.3.1...5.3.2) - Anchor - 💄 Fix Anchor redundant border style when it is set to horizontal direction. [#​41336](https://github.com/ant-design/ant-design/pull/41336) [@​gooyoung](https://github.com/gooyoung) - 💄 Fix Anchor ink square style in `vertical` mode. [#​41317](https://github.com/ant-design/ant-design/pull/41317) [@​acyza](https://github.com/acyza) - 🐞 Fix Grid `offset` can not be overwritten problem under different device screen sizes. [#​41309](https://github.com/ant-design/ant-design/pull/41309) [@​Yuiai01](https://github.com/Yuiai01) - 🐞 Fix Breadcrumb `onClick` not working bug. [#​41283](https://github.com/ant-design/ant-design/pull/41283) [@​acyza](https://github.com/acyza) - 🐞 Fix Upload trigger Progress warning after upload. [#​41234](https://github.com/ant-design/ant-design/pull/41234) [@​kiner-tang](https://github.com/kiner-tang) - 🐞 Fix Table unexpected layout problem when dragging element to the right. [#​41139](https://github.com/ant-design/ant-design/pull/41139) [@​hoho2017](https://github.com/hoho2017) - 💄 Fix Tabs more icon color in dark mode. [#​41313](https://github.com/ant-design/ant-design/pull/41313) [@​PhosphorusP](https://github.com/PhosphorusP) - 💄 Fix Button focus outline style be covered by Dropdown.Button. [#​41282](https://github.com/ant-design/ant-design/pull/41282) [@​Yuiai01](https://github.com/Yuiai01) - 💄 Fix Input.TextArea style problem when focusing. [#​41228](https://github.com/ant-design/ant-design/pull/41228) [@​MuxinFeng](https://github.com/MuxinFeng) - RTL - 💄 Fix Input.TextArea RTL style when enable `showCount`. [#​41319](https://github.com/ant-design/ant-design/pull/41319) [@​ds1371dani](https://github.com/ds1371dani) - TypeScript - 🤖 Export `CountdownProps` for Statistic. [#​41341](https://github.com/ant-design/ant-design/pull/41341) [@​li-jia-nan](https://github.com/li-jia-nan) - 🤖 Improve most alias token meta info. [#​41297](https://github.com/ant-design/ant-design/pull/41297) [@​arvinxx](https://github.com/arvinxx) - 🤖 Improve Badge `React.forwardRef` type definition. [#​41189](https://github.com/ant-design/ant-design/pull/41189) [@​li-jia-nan](https://github.com/li-jia-nan) *** - Anchor - 💄 修复 Anchor 组件设置为水平方向时多余的 border 样式。[#​41336](https://github.com/ant-design/ant-design/pull/41336) [@​gooyoung](https://github.com/gooyoung) - 💄 修复 Anchor 处于 `vertical` 方向时 ink 小方块的样式。[#​41317](https://github.com/ant-design/ant-design/pull/41317) [@​acyza](https://github.com/acyza) - 🐞 修复 Grid 在不同设备屏幕下的 `offset` 设置不会被覆盖的问题。[#​41309](https://github.com/ant-design/ant-design/pull/41309) [@​Yuiai01](https://github.com/Yuiai01) - 🐞 修复 Breadcrumb `onClick` 不工作的问题。[#​41283](https://github.com/ant-design/ant-design/pull/41283) [@​acyza](https://github.com/acyza) - 🐞 修复 Upload 在上传完毕后 Progress 组件抛出警告的问题。[#​41234](https://github.com/ant-design/ant-design/pull/41234) [@​kiner-tang](https://github.com/kiner-tang) - 🐞 修复 Table 在拖动元素一直右移时布局错误的问题。[#​41139](https://github.com/ant-design/ant-design/pull/41139) [@​hoho2017](https://github.com/hoho2017) - 💄 修复 Tabs 在深色模式下更多图标的色值。[#​41313](https://github.com/ant-design/ant-design/pull/41313) [@​PhosphorusP](https://github.com/PhosphorusP) - 💄 修复 Button 下拉时聚焦轮廓被其他元素遮挡的问题。[#​41282](https://github.com/ant-design/ant-design/pull/41282) [@​Yuiai01](https://github.com/Yuiai01) - 💄 修复 Input.TextArea 在 focus 状态下的样式问题。[#​41228](https://github.com/ant-design/ant-design/pull/41228) [@​MuxinFeng](https://github.com/MuxinFeng) - RTL - 💄 修复 Input.TextArea 在启用 `showCount` 时 RTL 模式下位置不正确的问题。[#​41319](https://github.com/ant-design/ant-design/pull/41319) [@​ds1371dani](https://github.com/ds1371dani) - TypeScript - 🤖 导出 Statistic 的 `CountdownProps` 类型。[#​41341](https://github.com/ant-design/ant-design/pull/41341) [@​li-jia-nan](https://github.com/li-jia-nan) - 🤖 优化 token 的类型提示和说明。[#​41297](https://github.com/ant-design/ant-design/pull/41297) [@​arvinxx](https://github.com/arvinxx) - 🤖 优化 Badge `React.forwardRef` 类型定义。[#​41189](https://github.com/ant-design/ant-design/pull/41189) [@​li-jia-nan](https://github.com/li-jia-nan) ### [`v5.3.1`](https://github.com/ant-design/ant-design/releases/tag/5.3.1) [Compare Source](https://github.com/ant-design/ant-design/compare/5.3.0...5.3.1) - 🐞 Update DatePicker deps to fix laggy in Safari and support align with `transform scale`. [#​41090](https://github.com/ant-design/ant-design/pull/41090) - 🐞 Fix Menu collapse, Tooltip sometime show with unexpected. [#​41081](https://github.com/ant-design/ant-design/issues/41081) - 🐞 Fix Modal.confirm has additional node which makes height not correct. [#​41173](https://github.com/ant-design/ant-design/pull/41173) [@​Svudec](https://github.com/Svudec) - 🐞 Fixed InputNumber `disabled` text color not correct. [#​41167](https://github.com/ant-design/ant-design/pull/41167) [@​Yuiai01](https://github.com/Yuiai01) - 🐞 Fix Anchor highlighting not working when dynamically updating `items`. [#​40743](https://github.com/ant-design/ant-design/pull/40743) [@​zqran](https://github.com/zqran) - 🛠 Update Mentions deps to support align with `transform scale`. [#​41160](https://github.com/ant-design/ant-design/pull/41160) [@​MuxinFeng](https://github.com/MuxinFeng) - 🐞 Fix Form with manually called `validateFields` not show success status when `hasFeedback` is on. [#​41116](https://github.com/ant-design/ant-design/pull/41116) [@​kiner-tang](https://github.com/kiner-tang) - 🐞 Fix Cascader sub panel not close when hover to leaf node. [#​41134](https://github.com/ant-design/ant-design/issues/41134) - 🐞 Fix Popconfirm using `Promise` to close will not exist `loading` state even when open again. [#​41121](https://github.com/ant-design/ant-design/pull/41121) - 🐞 Fix Upload `onChange` sometime not sync when in React 18. [#​41082](https://github.com/ant-design/ant-design/pull/41082) [@​li-jia-nan](https://github.com/li-jia-nan) - 🛎 Update demo with Space.Compact instead of legacy one and patch warning info. [#​41080](https://github.com/ant-design/ant-design/pull/41080) [@​Yuiai01](https://github.com/Yuiai01) - 🌐 Update ko_KR、Added Amharic Language. [#​41103](https://github.com/ant-design/ant-design/pull/41103) [@​li-jia-nan](https://github.com/li-jia-nan) *** - 🐞 更新 DatePicker 底层依赖,修复 Safari 下卡顿,支持 `transform scale` 下对齐。[#​41090](https://github.com/ant-design/ant-design/pull/41090) - 🐞 修复 Menu 收缩时,Tooltip 有时会弹出的问题。[#​41081](https://github.com/ant-design/ant-design/issues/41081) - 🐞 修复 Modal.confirm 窗体有额外节点导致高度不正确的问题。[#​41173](https://github.com/ant-design/ant-design/pull/41173) [@​Svudec](https://github.com/Svudec) - 🐞 修复 InputNumber `disabled` 时字体高亮不正确的问题。[#​41167](https://github.com/ant-design/ant-design/pull/41167) [@​Yuiai01](https://github.com/Yuiai01) - 🐞 修复 Anchor 动态添加 `items` 后高亮失效问题。[#​40743](https://github.com/ant-design/ant-design/pull/40743) [@​zqran](https://github.com/zqran) - 🛠 更新 Mentions 底层依赖,支持 `transform scale` 下对齐。[#​41160](https://github.com/ant-design/ant-design/pull/41160) [@​MuxinFeng](https://github.com/MuxinFeng) - 🐞 修复 Form 手工调用 `validateFields` 时,`hasFeedback` 对成功态不生效的问题。[#​41116](https://github.com/ant-design/ant-design/pull/41116) [@​kiner-tang](https://github.com/kiner-tang) - 🐞 修复 Cascader 在悬浮至叶子节点时,展开面板没有关闭的问题。[#​41134](https://github.com/ant-design/ant-design/issues/41134) - 🐞 修复 Popconfirm 使用 `Promise` 关闭时再次打开仍然是 `loading` 状态的问题。[#​41121](https://github.com/ant-design/ant-design/pull/41121) - 🐞 修复 Upload 在 React 18 下 `onChange` 有时数据不正确的问题。[#​41082](https://github.com/ant-design/ant-design/pull/41082) [@​li-jia-nan](https://github.com/li-jia-nan) - 🛎 补充官网中没有切换到 Space.Compact 的遗留示例,并且添加相应警告。[#​41080](https://github.com/ant-design/ant-design/pull/41080) [@​Yuiai01](https://github.com/Yuiai01) - 🌐 更新韩语国际化,添加国际化阿姆哈拉语。[#​41103](https://github.com/ant-design/ant-design/pull/41103) [@​li-jia-nan](https://github.com/li-jia-nan) </details> <details> <summary>fastify/fastify</summary> ### [`v4.15.0`](https://github.com/fastify/fastify/releases/tag/v4.15.0) [Compare Source](https://github.com/fastify/fastify/compare/v4.14.1...v4.15.0) #### What's Changed - build(deps-dev): bump tsd from 0.25.0 to 0.26.0 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify/pull/4614](https://github.com/fastify/fastify/pull/4614) - feat: use internal trees for prettyPrint by [@​ivan-tymoshenko](https://github.com/ivan-tymoshenko) in [https://github.com/fastify/fastify/pull/4618](https://github.com/fastify/fastify/pull/4618) - docs: add metcoder95 as collaborator by [@​metcoder95](https://github.com/metcoder95) in [https://github.com/fastify/fastify/pull/4622](https://github.com/fastify/fastify/pull/4622) - build(deps): bump lycheeverse/lychee-action from 1.5.4 to 1.6.1 by [@​dependabot](https://github.com/dependabot) in [https://github.com/fastify/fastify/pull/4603](https://github.com/fastify/fastify/pull/4603) - Logger validator throws by [@​victortosts](https://github.com/victortosts) in [https://github.com/fastify/fastify/pull/4520](https://github.com/fastify/fastify/pull/4520) - feat: expose prettyPrint method param by [@​ivan-tymoshenko](https://github.com/ivan-tymoshenko) in [https://github.com/fastify/fastify/pull/4623](https://github.com/fastify/fastify/pull/4623) - ensure that generated validators are up to date by [@​Uzlopak](https://github.com/Uzlopak) in [https://github.com/fastify/fastify/pull/4508](https://github.com/fastify/fastify/pull/4508) - fix: check if validation schema is undefined by [@​Eomm](https://github.com/Eomm) in [https://github.com/fastify/fastify/pull/4620](https://github.com/fastify/fastify/pull/4620) - fix: content-type mis-handling for invalid non-essence content-type by [@​climba03003](https://github.com/climba03003) in [https://github.com/fastify/fastify/pull/4509](https://github.com/fastify/fastify/pull/4509) - Bump version of fast-json-stringify-compiler by [@​Uzlopak](https://github.com/Uzlopak) in [https://github.com/fastify/fastify/pull/4630](https://github.com/fastify/fastify/pull/4630) - fix: avoid invoking onError hook when aborted handler resolves by [@​meyfa](https://github.com/meyfa) in [https://github.com/fastify/fastify/pull/4631](https://github.com/fastify/fastify/pull/4631) #### New Contributors - [@​victortosts](https://github.com/victortosts) made their first contribution in [https://github.com/fastify/fastify/pull/4520](https://github.com/fastify/fastify/pull/4520) - [@​meyfa](https://github.com/meyfa) made their first contribution in [https://github.com/fastify/fastify/pull/4631](https://github.com/fastify/fastify/pull/4631) **Full Changelog**: https://github.com/fastify/fastify/compare/v4.14.1...v4.15.0 </details> <details> <summary>harttle/liquidjs</summary> ### [`v10.6.2`](https://github.com/harttle/liquidjs/blob/HEAD/CHANGELOG.md#​1062-httpsgithubcomharttleliquidjscomparev1061v1062-2023-03-19) [Compare Source](https://github.com/harttle/liquidjs/compare/v10.6.1...v10.6.2) ##### Bug Fixes - sample FS in render-file.md ([#​594](https://github.com/harttle/liquidjs/issues/594)) ([4542ddc](https://github.com/harttle/liquidjs/commit/4542ddcfc3d5e245112a119bf22f0e00cb925791)) </details> <details> <summary>howardabrams/node-mocks-http</summary> ### [`v1.12.2`](https://github.com/howardabrams/node-mocks-http/blob/HEAD/HISTORY.md#v-1122) [Compare Source](https://github.com/howardabrams/node-mocks-http/compare/v1.12.1...v1.12.2) - 📦️ Upgrade [@​types/express](https://github.com/types/express) [Issue #​267][267]. - setHeader should return this [Issue #​268][268]. [267]: https://github.com/howardabrams/node-mocks-http/issues/267 [268]: https://github.com/howardabrams/node-mocks-http/issues/268 </details> <details> <summary>Unitech/pm2</summary> ### [`v5.3.0`](https://github.com/Unitech/pm2/blob/HEAD/CHANGELOG.md#​530) [Compare Source](https://github.com/Unitech/pm2/compare/5.2.2...5.3.0) - fix: replace non-working condition that blocks flush from clearing the logs [#​5533](https://github.com/Unitech/pm2/issues/5533) [@​Sailboat265](https://github.com/Sailboat265) - fix: ESM script loader [#​5524](https://github.com/Unitech/pm2/issues/5524) [@​BlueWater86](https://github.com/BlueWater86) </details> <details> <summary>pnpm/pnpm</summary> ### [`v7.30.0`](https://github.com/pnpm/pnpm/releases/tag/v7.30.0) [Compare Source](https://github.com/pnpm/pnpm/compare/v7.29.3...v7.30.0) ##### Minor Changes - Allow to set a custom directory for storing patch files via the `patches-dir` setting [#​6215](https://github.com/pnpm/pnpm/pull/6215) ##### Patch Changes - New directories should be prepended to NODE_PATH in command shims, not appended. - Retry copying file on EBUSY error [#​6201](https://github.com/pnpm/pnpm/issues/6201). ##### Our Gold Sponsors <table> <tbody> <tr> <td align="center" valign="middle"> <a href="https://bit.dev/?utm_source=pnpm&utm_medium=release_notes" target="_blank"><img src="https://pnpm.io/img/users/bit.svg" width="80"></a> </td> <td align="center" valign="middle"> <a href="https://novu.co/?utm_source=pnpm&utm_medium=release_notes" target="_blank"> <picture> <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/novu.svg" /> <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/novu_light.svg" /> <img src="https://pnpm.io/img/users/novu.svg" width="180" /> </picture> </a> </td> </tr> <tr> <td align="center" valign="middle"> <a href="https://prisma.io/?utm_source=pnpm&utm_medium=release_notes" target="_blank"> <picture> <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/prisma.svg" /> <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/prisma_light.svg" /> <img src="https://pnpm.io/img/users/prisma.svg" width="180" /> </picture> </a> </td> <td align="center" valign="middle"> <a href="https://www.flightcontrol.dev/?ref=pnpm" target="_blank"><img src="https://pnpm.io/img/users/flightcontrol.png" width="240"></a> </td> </tr> </tbody> </table> ##### Our Silver Sponsors <table> <tbody> <tr> <td align="center" valign="middle"> <a href="https://leniolabs.com/?utm_source=pnpm&utm_medium=release_notes" target="_blank"> <img src="https://pnpm.io/img/users/leniolabs.jpg" width="80"> </a> </td> <td align="center" valign="middle"> <a href="https://vercel.com/?utm_source=pnpm&utm_medium=release_notes" target="_blank"> <picture> <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/vercel.svg" /> <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/vercel_light.svg" /> <img src="https://pnpm.io/img/users/vercel.svg" width="180" /> </picture> </a> </td> <td align="center" valign="middle"> <a href="https://depot.dev/?utm_source=pnpm&utm_medium=release_notes" target="_blank"> <picture> <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/depot.svg" /> <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/depot_light.svg" /> <img src="https://pnpm.io/img/users/depot.svg" width="200" /> </picture> </a> </td> </tr> </tbody> </table> ### [`v7.29.3`](https://github.com/pnpm/pnpm/releases/tag/v7.29.3) [Compare Source](https://github.com/pnpm/pnpm/compare/v7.29.2...v7.29.3) #### Patch Changes - Command shim should not set higher priority to the `node_modules/.pnpm/node_modules` directory through the `NODE_PATH` env variable, then the command's own `node_modules` directory [#​5176](https://github.com/pnpm/pnpm/issues/5176). - `extend-node-path` is set back to `true` by default. It was set to `false` in v7.29.2 in order to fix issues with multiple versions of Jest in one workspace. It has caused other issues, so now we keep extending `NODE_PATH`. We have fixed the Jest issue with a different solution [#​6213](https://github.com/pnpm/pnpm/issues/6213). #### Our Gold Sponsors <table> <tbody> <tr> <td align="center" valign="middle"> <a href="https://bit.dev/?utm_source=pnpm&utm_medium=release_notes" target="_blank"><img src="https://pnpm.io/img/users/bit.svg" width="80"></a> </td> <td align="center" valign="middle"> <a href="https://novu.co/?utm_source=pnpm&utm_medium=release_notes" target="_blank"> <picture> <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/novu.svg" /> <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/novu_light.svg" /> <img src="https://pnpm.io/img/users/novu.svg" width="180" /> </picture> </a> </td> </tr> <tr> <td align="center" valign="middle"> <a href="https://prisma.io/?utm_source=pnpm&utm_medium=release_notes" target="_blank"> <picture> <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/prisma.svg" /> <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/prisma_light.svg" /> <img src="https://pnpm.io/img/users/prisma.svg" width="180" /> </picture> </a> </td> <td align="center" valign="middle"> <a href="https://www.flightcontrol.dev/?ref=pnpm" target="_blank"><img src="https://pnpm.io/img/users/flightcontrol.png" width="240"></a> </td> </tr> </tbody> </table> #### Our Silver Sponsors <table> <tbody> <tr> <td align="center" valign="middle"> <a href="https://leniolabs.com/?utm_source=pnpm&utm_medium=release_notes" target="_blank"> <img src="https://pnpm.io/img/users/leniolabs.jpg" width="80"> </a> </td> <td align="center" valign="middle"> <a href="https://vercel.com/?utm_source=pnpm&utm_medium=release_notes" target="_blank"> <picture> <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/vercel.svg" /> <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/vercel_light.svg" /> <img src="https://pnpm.io/img/users/vercel.svg" width="180" /> </picture> </a> </td> <td align="center" valign="middle"> <a href="https://depot.dev/?utm_source=pnpm&utm_medium=release_notes" target="_blank"> <picture> <source media="(prefers-color-scheme: light)" srcset="https://pnpm.io/img/users/depot.svg" /> <source media="(prefers-color-scheme: dark)" srcset="https://pnpm.io/img/users/depot_light.svg" /> <img src="https://pnpm.io/img/users/depot.svg" width="200" /> </picture> </a> </td> </tr> </tbody> </table> ### [`v7.29.2`](https://github.com/pnpm/pnpm/compare/v7.29.1...v7.29.2) [Compare Source](https://github.com/pnpm/pnpm/compare/v7.29.1...v7.29.2) </details> <details> <summary>styled-components/styled-components</summary> ### [`v5.3.9`](https://github.com/styled-components/styled-components/releases/tag/v5.3.9) [Compare Source](https://github.com/styled-components/styled-components/compare/v5.3.8...v5.3.9) #### What's Changed - \[v5] Make styled components work when the Object prototype is frozen by [@​jportner](https://github.com/jportner) in [https://github.com/styled-components/styled-components/pull/3964](https://github.com/styled-components/styled-components/pull/3964) **Full Changelog**: https://github.com/styled-components/styled-components/compare/v5.3.8...v5.3.9 </details> <details> <summary>vercel/turbo</summary> ### [`v1.8.4`](https://github.com/vercel/turbo/releases/tag/v1.8.4): Turborepo v1.8.4 [Compare Source](https://github.com/vercel/turbo/compare/v1.8.3...v1.8.4) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v1.8.4 --> #### What's Changed ##### Changelog - release(turborepo): 1.8.3 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/3989](https://github.com/vercel/turbo/pull/3989) - enable rust codepath in release process by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/3903](https://github.com/vercel/turbo/pull/3903) - Add tests to validate errors-only is working by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3945](https://github.com/vercel/turbo/pull/3945) - fix: make inputs relative to workspace root by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/3993](https://github.com/vercel/turbo/pull/3993) - Include expanded inputs config for each task in dry run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3957](https://github.com/vercel/turbo/pull/3957) - fix prisma example ReferenceError by [@​mkreuzmayr](https://github.com/mkreuzmayr) in [https://github.com/vercel/turbo/pull/3947](https://github.com/vercel/turbo/pull/3947) - feat(codemod): support workspace configs by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/3992](https://github.com/vercel/turbo/pull/3992) - fix: scm make patterns relative by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/3996](https://github.com/vercel/turbo/pull/3996) - feat(cli): support --no-update-notifier by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4003](https://github.com/vercel/turbo/pull/4003) - feat(docs): move reference up in priority ([#​4007](https://github.com/vercel/turbo/issues/4007) by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4007](https://github.com/vercel/turbo/pull/4007) - Add inferred framework to Dry Run by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3941](https://github.com/vercel/turbo/pull/3941) - Fix prettier by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4022](https://github.com/vercel/turbo/pull/4022) - Build Requirements for Ubuntu by [@​tm1000](https://github.com/tm1000) in [https://github.com/vercel/turbo/pull/4010](https://github.com/vercel/turbo/pull/4010) - Add missing function from port. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4027](https://github.com/vercel/turbo/pull/4027) - Calculate TaskHash while constructing PackageTask by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4016](https://github.com/vercel/turbo/pull/4016) - Refactor env package to breakdown env vars for task by source by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4021](https://github.com/vercel/turbo/pull/4021) - Add task + framework env vars into Dry Run Summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4020](https://github.com/vercel/turbo/pull/4020) - fix(codemod): don’t set outputs for cache:false by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4029](https://github.com/vercel/turbo/pull/4029) - Client timeout by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/3998](https://github.com/vercel/turbo/pull/3998) - Add turboVersion into dry run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4047](https://github.com/vercel/turbo/pull/4047) - Assign Framework to PackageTask struct by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4050](https://github.com/vercel/turbo/pull/4050) - Create runsummary package and rename DryRunSummary to RunSummary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4052](https://github.com/vercel/turbo/pull/4052) - Revert "enable rust codepath in release process" by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4068](https://github.com/vercel/turbo/pull/4068) - release(turborepo): 1.8.4-canary.0 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4065](https://github.com/vercel/turbo/pull/4065) - release(turborepo): 1.8.4-canary.1 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4070](https://github.com/vercel/turbo/pull/4070) - Log the json that we are sending to the go binary by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4067](https://github.com/vercel/turbo/pull/4067) - Generate a run summary file on turbo run by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4069](https://github.com/vercel/turbo/pull/4069) - fix: ensure that memory is free'd using the same allocator by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/4101](https://github.com/vercel/turbo/pull/4101) - Parallel cache state by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4110](https://github.com/vercel/turbo/pull/4110) - release(turborepo): 1.8.4-canary.2 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4113](https://github.com/vercel/turbo/pull/4113) - chore: Bumping fsnotify version by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/3956](https://github.com/vercel/turbo/pull/3956) - Add globalenv to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4090](https://github.com/vercel/turbo/pull/4090) - Flag on the Go sandwich, attempt [#​2](https://github.com/vercel/turbo/issues/2) by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4115](https://github.com/vercel/turbo/pull/4115) - Re-repair Root Inference by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4049](https://github.com/vercel/turbo/pull/4049) - Correct argument to local `turbo` inference. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4122](https://github.com/vercel/turbo/pull/4122) - release(turborepo): 1.8.4-canary.3 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4125](https://github.com/vercel/turbo/pull/4125) - Revert "Flag on the Go sandwich, attempt [#​2](https://github.com/vercel/turbo/issues/2)" ([#​4127](https://github.com/vercel/turbo/issues/4127) by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4127](https://github.com/vercel/turbo/pull/4127) - Support exclusions in inputs by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4066](https://github.com/vercel/turbo/pull/4066) - release(turborepo): 1.8.4-canary.4 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4131](https://github.com/vercel/turbo/pull/4131) - Add TaskExecutionSummary to Run Summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4116](https://github.com/vercel/turbo/pull/4116) - Amend incorrect file referenced in Getting Started by [@​richardjzhang](https://github.com/richardjzhang) in [https://github.com/vercel/turbo/pull/4148](https://github.com/vercel/turbo/pull/4148) - feat(turbo-ignore): update logging by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4154](https://github.com/vercel/turbo/pull/4154) - fix sentence by [@​bhatvikrant](https://github.com/bhatvikrant) in [https://github.com/vercel/turbo/pull/4158](https://github.com/vercel/turbo/pull/4158) - fix(create-turbo): update create-turbo eslint template ([#​4160](https://github.com/vercel/turbo/issues/4160) by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4160](https://github.com/vercel/turbo/pull/4160) - Add log to go binary by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4157](https://github.com/vercel/turbo/pull/4157) - Add expandedOutputs to run summary of each task by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4095](https://github.com/vercel/turbo/pull/4095) - Remove env-var linting comments. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/4162](https://github.com/vercel/turbo/pull/4162) - Fix integration tests to add new log message by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4164](https://github.com/vercel/turbo/pull/4164) - chore(deps): update mysql docker tag to v8.0.32 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turbo/pull/4071](https://github.com/vercel/turbo/pull/4071) - fix(examples): update kitchen-sink dev task by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4177](https://github.com/vercel/turbo/pull/4177) - Ensure we record the lockfile name when there's an error unmarshalling by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4180](https://github.com/vercel/turbo/pull/4180) - Add dependencies and dependent tasks into run summaries by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4165](https://github.com/vercel/turbo/pull/4165) - update lockfile due to removed packages by [@​sokra](https://github.com/sokra) in [https://github.com/vercel/turbo/pull/4192](https://github.com/vercel/turbo/pull/4192) - Downgrade git warning to debug. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4193](https://github.com/vercel/turbo/pull/4193) - fix(turborepo): race condition in config tests by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4186](https://github.com/vercel/turbo/pull/4186) - Run integration tests in parallel by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4044](https://github.com/vercel/turbo/pull/4044) - fix: SCM relative paths in nested turborepo by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4184](https://github.com/vercel/turbo/pull/4184) - Throw an error when a task graph cannot run to completion. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4205](https://github.com/vercel/turbo/pull/4205) - fix: Turbo SCM with Windows paths by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4207](https://github.com/vercel/turbo/pull/4207) - chore: Flip the Rust switch by [@​NicholasLYang](https://togithub. </details> --- ### Configuration 📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- 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/PKUHPC/SCOW). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMC4yIiwidXBkYXRlZEluVmVyIjoiMzUuMTQuMiJ9--> 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://turbo.build/repo) ([source](https://github.com/vercel/turbo)) | [`^1.8.3` -> `^1.8.5`](https://renovatebot.com/diffs/npm/turbo/1.8.3/1.8.5) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.8.5/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.8.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.8.5/compatibility-slim/1.8.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.8.5/confidence-slim/1.8.3)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/turbo</summary> ### [`v1.8.5`](https://github.com/vercel/turbo/releases/tag/v1.8.5): Turborepo v1.8.5 [Compare Source](https://github.com/vercel/turbo/compare/v1.8.4...v1.8.5) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v1.8.5 --> #### What's Changed ##### Changelog - release(turborepo): 1.8.4 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4267](https://github.com/vercel/turbo/pull/4267) - Add valid JSON into test fixture by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4269](https://github.com/vercel/turbo/pull/4269) - If a graph walk task fails, stop the walk. by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4254](https://github.com/vercel/turbo/pull/4254) - Revert rust scm usage by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4277](https://github.com/vercel/turbo/pull/4277) - send a SIGTERM on unix rather than just killing the process by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/4276](https://github.com/vercel/turbo/pull/4276) **Full Changelog**: vercel/turborepo@v1.8.4...v1.8.5 ### [`v1.8.4`](https://github.com/vercel/turbo/releases/tag/v1.8.4): Turborepo v1.8.4 [Compare Source](https://github.com/vercel/turbo/compare/v1.8.3...v1.8.4) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v1.8.4 --> #### What's Changed ##### Changelog - release(turborepo): 1.8.3 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/3989](https://github.com/vercel/turbo/pull/3989) - enable rust codepath in release process by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/3903](https://github.com/vercel/turbo/pull/3903) - Add tests to validate errors-only is working by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3945](https://github.com/vercel/turbo/pull/3945) - fix: make inputs relative to workspace root by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/3993](https://github.com/vercel/turbo/pull/3993) - Include expanded inputs config for each task in dry run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3957](https://github.com/vercel/turbo/pull/3957) - fix prisma example ReferenceError by [@​mkreuzmayr](https://github.com/mkreuzmayr) in [https://github.com/vercel/turbo/pull/3947](https://github.com/vercel/turbo/pull/3947) - feat(codemod): support workspace configs by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/3992](https://github.com/vercel/turbo/pull/3992) - fix: scm make patterns relative by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/3996](https://github.com/vercel/turbo/pull/3996) - feat(cli): support --no-update-notifier by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4003](https://github.com/vercel/turbo/pull/4003) - feat(docs): move reference up in priority ([#​4007](https://github.com/vercel/turbo/issues/4007) by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4007](https://github.com/vercel/turbo/pull/4007) - Add inferred framework to Dry Run by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/3941](https://github.com/vercel/turbo/pull/3941) - Fix prettier by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4022](https://github.com/vercel/turbo/pull/4022) - Build Requirements for Ubuntu by [@​tm1000](https://github.com/tm1000) in [https://github.com/vercel/turbo/pull/4010](https://github.com/vercel/turbo/pull/4010) - Add missing function from port. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4027](https://github.com/vercel/turbo/pull/4027) - Calculate TaskHash while constructing PackageTask by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4016](https://github.com/vercel/turbo/pull/4016) - Refactor env package to breakdown env vars for task by source by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4021](https://github.com/vercel/turbo/pull/4021) - Add task + framework env vars into Dry Run Summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4020](https://github.com/vercel/turbo/pull/4020) - fix(codemod): don’t set outputs for cache:false by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4029](https://github.com/vercel/turbo/pull/4029) - Client timeout by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/3998](https://github.com/vercel/turbo/pull/3998) - Add turboVersion into dry run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4047](https://github.com/vercel/turbo/pull/4047) - Assign Framework to PackageTask struct by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4050](https://github.com/vercel/turbo/pull/4050) - Create runsummary package and rename DryRunSummary to RunSummary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4052](https://github.com/vercel/turbo/pull/4052) - Revert "enable rust codepath in release process" by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4068](https://github.com/vercel/turbo/pull/4068) - release(turborepo): 1.8.4-canary.0 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4065](https://github.com/vercel/turbo/pull/4065) - release(turborepo): 1.8.4-canary.1 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4070](https://github.com/vercel/turbo/pull/4070) - Log the json that we are sending to the go binary by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4067](https://github.com/vercel/turbo/pull/4067) - Generate a run summary file on turbo run by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4069](https://github.com/vercel/turbo/pull/4069) - fix: ensure that memory is free'd using the same allocator by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/4101](https://github.com/vercel/turbo/pull/4101) - Parallel cache state by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4110](https://github.com/vercel/turbo/pull/4110) - release(turborepo): 1.8.4-canary.2 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4113](https://github.com/vercel/turbo/pull/4113) - chore: Bumping fsnotify version by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/3956](https://github.com/vercel/turbo/pull/3956) - Add globalenv to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4090](https://github.com/vercel/turbo/pull/4090) - Flag on the Go sandwich, attempt [#​2](https://github.com/vercel/turbo/issues/2) by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4115](https://github.com/vercel/turbo/pull/4115) - Re-repair Root Inference by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4049](https://github.com/vercel/turbo/pull/4049) - Correct argument to local `turbo` inference. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4122](https://github.com/vercel/turbo/pull/4122) - release(turborepo): 1.8.4-canary.3 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4125](https://github.com/vercel/turbo/pull/4125) - Revert "Flag on the Go sandwich, attempt [#​2](https://github.com/vercel/turbo/issues/2)" ([#​4127](https://github.com/vercel/turbo/issues/4127) by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4127](https://github.com/vercel/turbo/pull/4127) - Support exclusions in inputs by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4066](https://github.com/vercel/turbo/pull/4066) - release(turborepo): 1.8.4-canary.4 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4131](https://github.com/vercel/turbo/pull/4131) - Add TaskExecutionSummary to Run Summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4116](https://github.com/vercel/turbo/pull/4116) - Amend incorrect file referenced in Getting Started by [@​richardjzhang](https://github.com/richardjzhang) in [https://github.com/vercel/turbo/pull/4148](https://github.com/vercel/turbo/pull/4148) - feat(turbo-ignore): update logging by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4154](https://github.com/vercel/turbo/pull/4154) - fix sentence by [@​bhatvikrant](https://github.com/bhatvikrant) in [https://github.com/vercel/turbo/pull/4158](https://github.com/vercel/turbo/pull/4158) - fix(create-turbo): update create-turbo eslint template ([#​4160](https://github.com/vercel/turbo/issues/4160) by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4160](https://github.com/vercel/turbo/pull/4160) - Add log to go binary by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4157](https://github.com/vercel/turbo/pull/4157) - Add expandedOutputs to run summary of each task by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4095](https://github.com/vercel/turbo/pull/4095) - Remove env-var linting comments. by [@​anthonyshew](https://github.com/anthonyshew) in [https://github.com/vercel/turbo/pull/4162](https://github.com/vercel/turbo/pull/4162) - Fix integration tests to add new log message by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4164](https://github.com/vercel/turbo/pull/4164) - chore(deps): update mysql docker tag to v8.0.32 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turbo/pull/4071](https://github.com/vercel/turbo/pull/4071) - fix(examples): update kitchen-sink dev task by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4177](https://github.com/vercel/turbo/pull/4177) - Ensure we record the lockfile name when there's an error unmarshalling by [@​gsoltis](https://github.com/gsoltis) in [https://github.com/vercel/turbo/pull/4180](https://github.com/vercel/turbo/pull/4180) - Add dependencies and dependent tasks into run summaries by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4165](https://github.com/vercel/turbo/pull/4165) - update lockfile due to removed packages by [@​sokra](https://github.com/sokra) in [https://github.com/vercel/turbo/pull/4192](https://github.com/vercel/turbo/pull/4192) - Downgrade git warning to debug. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4193](https://github.com/vercel/turbo/pull/4193) - fix(turborepo): race condition in config tests by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4186](https://github.com/vercel/turbo/pull/4186) - Run integration tests in parallel by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4044](https://github.com/vercel/turbo/pull/4044) - fix: SCM relative paths in nested turborepo by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4184](https://github.com/vercel/turbo/pull/4184) - Throw an error when a task graph cannot run to completion. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4205](https://github.com/vercel/turbo/pull/4205) - fix: Turbo SCM with Windows paths by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4207](https://github.com/vercel/turbo/pull/4207) - chore: Flip the Rust switch by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4181](https://github.com/vercel/turbo/pull/4181) - gracefully handle ctrlc on windows by proactively the killing go process by [@​arlyon](https://github.com/arlyon) in [https://github.com/vercel/turbo/pull/4196](https://github.com/vercel/turbo/pull/4196) - release(turborepo): 1.8.4-canary.5 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4215](https://github.com/vercel/turbo/pull/4215) - Fix forward inference test parallelization. by [@​nathanhammond](https://github.com/nathanhammond) in [https://github.com/vercel/turbo/pull/4203](https://github.com/vercel/turbo/pull/4203) - Add pass through args to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4209](https://github.com/vercel/turbo/pull/4209) - Fix duplicate items in task summaries by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4217](https://github.com/vercel/turbo/pull/4217) - Add a hash of external dependencies to run summary by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4212](https://github.com/vercel/turbo/pull/4212) - fix: prune pnpm patched dependencies with peer dependencies by [@​chris-olszewski](https://github.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/4200](https://github.com/vercel/turbo/pull/4200) - Add a version to the run summary schema by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4230](https://github.com/vercel/turbo/pull/4230) - release(turborepo): 1.8.4-canary.6 by [@​github-actions](https://github.com/github-actions) in [https://github.com/vercel/turbo/pull/4234](https://github.com/vercel/turbo/pull/4234) - chore(deps): update dependency tsx to v3.12.5 by [@​renovate](https://github.com/renovate) in [https://github.com/vercel/turbo/pull/3962](https://github.com/vercel/turbo/pull/3962) - Check that root commands cannot invoke turbo by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4223](https://github.com/vercel/turbo/pull/4223) - Fix error message documentation by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4094](https://github.com/vercel/turbo/pull/4094) - Filter out summaries of tasks that didn't execute by [@​mehulkar](https://github.com/mehulkar) in [https://github.com/vercel/turbo/pull/4238](https://github.com/vercel/turbo/pull/4238) - docs: Document common question around turborepo-ffi by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4232](https://github.com/vercel/turbo/pull/4232) - feat(examples): add vercel template to meta by [@​tknickman](https://github.com/tknickman) in [https://github.com/vercel/turbo/pull/4242](https://github.com/vercel/turbo/pull/4242) - refactor: Removed includeUntracked because it's always set to true by [@​NicholasLYang](https://github.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/4243](https://github.com/vercel/turbo/pull/4243) #### New Contributors - [@​mkreuzmayr](https://github.com/mkreuzmayr) made their first contribution in [https://github.com/vercel/turbo/pull/3947](https://github.com/vercel/turbo/pull/3947) - [@​tm1000](https://github.com/tm1000) made their first contribution in [https://github.com/vercel/turbo/pull/4010](https://github.com/vercel/turbo/pull/4010) - [@​timneutkens](https://github.com/timneutkens) made their first contribution in [https://github.com/vercel/turbo/pull/4080](https://github.com/vercel/turbo/pull/4080) - [@​tunguyen-ct](https://github.com/tunguyen-ct) made their first contribution in [https://github.com/vercel/turbo/pull/4097](https://github.com/vercel/turbo/pull/4097) - [@​richardjzhang](https://github.com/richardjzhang) made their first contribution in [https://github.com/vercel/turbo/pull/4148](https://github.com/vercel/turbo/pull/4148) - [@​bhatvikrant](https://github.com/bhatvikrant) made their first contribution in [https://github.com/vercel/turbo/pull/4158](https://github.com/vercel/turbo/pull/4158) **Full Changelog**: vercel/turborepo@v1.8.3...v1.8.4 </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:eyJjcmVhdGVkSW5WZXIiOiIzNS4xNC4yIiwidXBkYXRlZEluVmVyIjoiMzUuMTQuMiJ9--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
We were encountering segfaults on certain combinations of go / rust versions. This was determined to be due to differing allocators. Memory reserved on one side of the sandwich and free'd on the other would sometimes fail depending on toolchains / platform. This resolves that problem.
To complicate things, this issue would only arise during cross-compilation, and not when building on the target OS / arch, as the allocator would presumably be the same.
Testing Instructions
I am going to run a dry run canary that we can re-test, though I have manualy verified the cross-compilation for win amd64.