Skip to content

Commit 7922067

Browse files
chore(deps): update patch/minor dependencies (#403)
This PR contains the following updates: | Package | Type | Update | Change | Age | Confidence | |---|---|---|---|---|---| | [amannn/action-semantic-pull-request](https://redirect.github.com/amannn/action-semantic-pull-request) | action | minor | `v6.0.1` -> `v6.1.1` | [![age](https://developer.mend.io/api/mc/badges/age/github-tags/amannn%2faction-semantic-pull-request/v6.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/github-tags/amannn%2faction-semantic-pull-request/v6.0.1/v6.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [prettier](https://prettier.io) ([source](https://redirect.github.com/prettier/prettier)) | devDependencies | minor | [`3.5.3` -> `3.6.2`](https://renovatebot.com/diffs/npm/prettier/3.5.3/3.6.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/prettier/3.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prettier/3.5.3/3.6.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [turbo](https://turborepo.com) ([source](https://redirect.github.com/vercel/turborepo)) | devDependencies | patch | [`2.5.4` -> `2.5.6`](https://renovatebot.com/diffs/npm/turbo/2.5.4/2.5.6) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/2.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/2.5.4/2.5.6?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [typescript](https://www.typescriptlang.org/) ([source](https://redirect.github.com/microsoft/TypeScript)) | devDependencies | minor | [`~5.8.0` -> `~5.9.0`](https://renovatebot.com/diffs/npm/typescript/5.8.3/5.9.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/typescript/5.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/typescript/5.8.3/5.9.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>amannn/action-semantic-pull-request (amannn/action-semantic-pull-request)</summary> ### [`v6.1.1`](https://redirect.github.com/amannn/action-semantic-pull-request/releases/tag/v6.1.1) [Compare Source](https://redirect.github.com/amannn/action-semantic-pull-request/compare/v6.1.0...v6.1.1) ##### Bug Fixes - Parse `headerPatternCorrespondence` properly ([#&#8203;295](https://redirect.github.com/amannn/action-semantic-pull-request/issues/295)) ([800da4c](https://redirect.github.com/amannn/action-semantic-pull-request/commit/800da4c97f618e44f972ff9bc21ab5daecc97773)) ### [`v6.1.0`](https://redirect.github.com/amannn/action-semantic-pull-request/releases/tag/v6.1.0) [Compare Source](https://redirect.github.com/amannn/action-semantic-pull-request/compare/v6.0.1...v6.1.0) ##### Features - Support providing regexps for types ([#&#8203;292](https://redirect.github.com/amannn/action-semantic-pull-request/issues/292)) ([a30288b](https://redirect.github.com/amannn/action-semantic-pull-request/commit/a30288bf13b78cca17c3abdc144db5977476fc8b)) ##### Bug Fixes - Remove trailing whitespace from "unknown release type" error message ([#&#8203;291](https://redirect.github.com/amannn/action-semantic-pull-request/issues/291)) ([afa4edb](https://redirect.github.com/amannn/action-semantic-pull-request/commit/afa4edb1c465fb22230da8ff4776a163ab5facdf)) </details> <details> <summary>prettier/prettier (prettier)</summary> ### [`v3.6.2`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#362) [Compare Source](https://redirect.github.com/prettier/prettier/compare/3.6.1...3.6.2) [diff](https://redirect.github.com/prettier/prettier/compare/3.6.1...3.6.2) ##### Markdown: Add missing blank line around code block ([#&#8203;17675](https://redirect.github.com/prettier/prettier/pull/17675) by [@&#8203;fisker](https://redirect.github.com/fisker)) <!-- prettier-ignore --> ````md <!-- Input --> 1. Some text, and code block below, with newline after code block ```yaml --- foo: bar ``` 1. Another 2. List <!-- Prettier 3.6.1 --> 1. Some text, and code block below, with newline after code block ```yaml --- foo: bar ``` 1. Another 2. List <!-- Prettier 3.6.2 --> 1. Some text, and code block below, with newline after code block ```yaml --- foo: bar ``` 1. Another 2. List ```` ### [`v3.6.1`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#361) [Compare Source](https://redirect.github.com/prettier/prettier/compare/3.6.0...3.6.1) [diff](https://redirect.github.com/prettier/prettier/compare/3.6.0...3.6.1) ##### TypeScript: Allow const without initializer ([#&#8203;17650](https://redirect.github.com/prettier/prettier/pull/17650), [#&#8203;17654](https://redirect.github.com/prettier/prettier/pull/17654) by [@&#8203;fisker](https://redirect.github.com/fisker)) <!-- prettier-ignore --> ```jsx // Input export const version: string; // Prettier 3.6.0 (--parser=babel-ts) SyntaxError: Unexpected token (1:21) > 1 | export const version: string; | ^ // Prettier 3.6.0 (--parser=oxc-ts) SyntaxError: Missing initializer in const declaration (1:14) > 1 | export const version: string; | ^^^^^^^^^^^^^^^ // Prettier 3.6.1 export const version: string; ``` ##### Miscellaneous: Avoid closing files multiple times ([#&#8203;17665](https://redirect.github.com/prettier/prettier/pull/17665) by [@&#8203;43081j](https://redirect.github.com/43081j)) When reading a file to infer the interpreter from a shebang, we use the `n-readlines` library to read the first line in order to get the shebang. This library closes files when it reaches EOF, and we later try close the same files again. We now close files only if `n-readlines` did not already close them. ### [`v3.6.0`](https://redirect.github.com/prettier/prettier/blob/HEAD/CHANGELOG.md#360) [Compare Source](https://redirect.github.com/prettier/prettier/compare/3.5.3...3.6.0) [diff](https://redirect.github.com/prettier/prettier/compare/3.5.3...3.6.0) 🔗 [Release Notes](https://prettier.io/blog/2025/06/23/3.6.0) </details> <details> <summary>vercel/turborepo (turbo)</summary> ### [`v2.5.6`](https://redirect.github.com/vercel/turborepo/releases/tag/v2.5.6): Turborepo v2.5.6 [Compare Source](https://redirect.github.com/vercel/turborepo/compare/v2.5.5...v2.5.6) <!-- Release notes generated using configuration in .github/release.yml at v2.5.6 --> #### What's Changed ##### Docs - fix(examples): correct 'test:projects' script to use vitest directly by [@&#8203;namidapoo](https://redirect.github.com/namidapoo) in [https://github.com/vercel/turborepo/pull/10683](https://redirect.github.com/vercel/turborepo/pull/10683) - docs: update docs about env file handling by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10710](https://redirect.github.com/vercel/turborepo/pull/10710) - docs(run): correct --graph formats; remove incorrect default mention by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10744](https://redirect.github.com/vercel/turborepo/pull/10744) - docs(run): fix --log-prefix options to match CLI (task, not prefix) by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10743](https://redirect.github.com/vercel/turborepo/pull/10743) - docs: update --graph reference by [@&#8203;chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/10759](https://redirect.github.com/vercel/turborepo/pull/10759) ##### [@&#8203;turbo/repository](https://redirect.github.com/turbo/repository) - chore: update to Rust 1.88.0 by [@&#8203;ognevny](https://redirect.github.com/ognevny) in [https://github.com/vercel/turborepo/pull/10608](https://redirect.github.com/vercel/turborepo/pull/10608) - chore: update to Rust 1.89.0 by [@&#8203;ognevny](https://redirect.github.com/ognevny) in [https://github.com/vercel/turborepo/pull/10749](https://redirect.github.com/vercel/turborepo/pull/10749) ##### Examples - fix(examples): add missing extension to with-react-native-web ui tsconfig by [@&#8203;Franck-Fernandez-pro](https://redirect.github.com/Franck-Fernandez-pro) in [https://github.com/vercel/turborepo/pull/10694](https://redirect.github.com/vercel/turborepo/pull/10694) - chore(deps): bump the kitchen-sink group in /examples/kitchen-sink with 6 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10697](https://redirect.github.com/vercel/turborepo/pull/10697)7 - chore(deps): bump the with-tailwind group in /examples/with-tailwind with 3 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10698](https://redirect.github.com/vercel/turborepo/pull/10698)8 - chore(deps): bump the basic group in /examples/basic with 3 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10699](https://redirect.github.com/vercel/turborepo/pull/10699)9 - chore(deps-dev): bump the with-svelte group in /examples/with-svelte with 5 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10700](https://redirect.github.com/vercel/turborepo/pull/10700)0 - chore(deps-dev): bump turbo from 2.5.4 to 2.5.5 in /examples/with-shell-commands by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10701](https://redirect.github.com/vercel/turborepo/pull/10701)1 - chore(deps): bump the non-monorepo group in /examples/non-monorepo with 2 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10696](https://redirect.github.com/vercel/turborepo/pull/10696)6 - chore(deps-dev): bump the basic group in /examples/basic with 4 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10757](https://redirect.github.com/vercel/turborepo/pull/10757)7 - chore(deps-dev): bump the with-tailwind group in /examples/with-tailwind with 4 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10756](https://redirect.github.com/vercel/turborepo/pull/10756)6 - chore(deps-dev): bump the non-monorepo group in /examples/non-monorepo with 2 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10753](https://redirect.github.com/vercel/turborepo/pull/10753)3 - feat: upgrade NestJS to v11 and migrate to ESLint flat config by [@&#8203;iamnivekx](https://redirect.github.com/iamnivekx) in [https://github.com/vercel/turborepo/pull/10746](https://redirect.github.com/vercel/turborepo/pull/10746) ##### Changelog - docs: add architecture document for `turbo run` by [@&#8203;chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/10702](https://redirect.github.com/vercel/turborepo/pull/10702) - feat: allow Watch Mode with `--root-turbo-json` by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10687](https://redirect.github.com/vercel/turborepo/pull/10687) - chore(tower-uds): delete unused crate by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10676](https://redirect.github.com/vercel/turborepo/pull/10676) - test(turbo-utils): improve test coverage by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10693](https://redirect.github.com/vercel/turborepo/pull/10693) - test(turborepo-auth): unit tests for auth crate by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10692](https://redirect.github.com/vercel/turborepo/pull/10692) - feat: improve parsing error by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10682](https://redirect.github.com/vercel/turborepo/pull/10682) - chore: fix lints in tests by [@&#8203;chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/10707](https://redirect.github.com/vercel/turborepo/pull/10707) - chore(turbo\_json): lift `$TURBO_DEFAULT$` handling to turbo.json resolution by [@&#8203;chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/10709](https://redirect.github.com/vercel/turborepo/pull/10709) - chore(turbo\_json): prefactor loading logic by [@&#8203;chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/10719](https://redirect.github.com/vercel/turborepo/pull/10719) - fix(logs): no longer output group prefixes if no logs present by [@&#8203;chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/10760](https://redirect.github.com/vercel/turborepo/pull/10760) - fix(turbo): graceful shutdown on sighup by [@&#8203;chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/10764](https://redirect.github.com/vercel/turborepo/pull/10764) #### New Contributors - [@&#8203;namidapoo](https://redirect.github.com/namidapoo) made their first contribution in [https://github.com/vercel/turborepo/pull/10683](https://redirect.github.com/vercel/turborepo/pull/10683) - [@&#8203;Franck-Fernandez-pro](https://redirect.github.com/Franck-Fernandez-pro) made their first contribution in [https://github.com/vercel/turborepo/pull/10694](https://redirect.github.com/vercel/turborepo/pull/10694) - [@&#8203;iamnivekx](https://redirect.github.com/iamnivekx) made their first contribution in [https://github.com/vercel/turborepo/pull/10746](https://redirect.github.com/vercel/turborepo/pull/10746) **Full Changelog**: vercel/turborepo@v2.5.5...v2.5.6 ### [`v2.5.5`](https://redirect.github.com/vercel/turborepo/releases/tag/v2.5.5): Turborepo v2.5.5 [Compare Source](https://redirect.github.com/vercel/turborepo/compare/v2.5.4...v2.5.5) <!-- Release notes generated using configuration in .github/release.yml at v2.5.5 --> #### What's Changed ##### Docs - fix(docs): use `pnpm add <pkg>` instead of `pnpm install <pkg>` by [@&#8203;jferrettiboke](https://redirect.github.com/jferrettiboke) in [https://github.com/vercel/turborepo/pull/10529](https://redirect.github.com/vercel/turborepo/pull/10529) - fix(docs): missing commas in package.json files of jest docs by [@&#8203;ashish0kumar](https://redirect.github.com/ashish0kumar) in [https://github.com/vercel/turborepo/pull/10560](https://redirect.github.com/vercel/turborepo/pull/10560) - fix(docs): css import order bug in tailwindcss docs and example by [@&#8203;ashish0kumar](https://redirect.github.com/ashish0kumar) in [https://github.com/vercel/turborepo/pull/10561](https://redirect.github.com/vercel/turborepo/pull/10561) - docs: logo fix by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10562](https://redirect.github.com/vercel/turborepo/pull/10562) - chore: bump to [email protected] by [@&#8203;mischnic](https://redirect.github.com/mischnic) in [https://github.com/vercel/turborepo/pull/10530](https://redirect.github.com/vercel/turborepo/pull/10530) - fix(docs): incorrect CSS filename in Tailwind CSS setup example by [@&#8203;jihwan1211](https://redirect.github.com/jihwan1211) in [https://github.com/vercel/turborepo/pull/10573](https://redirect.github.com/vercel/turborepo/pull/10573) - docs: clarity for GitHub Actions caching strategies by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10583](https://redirect.github.com/vercel/turborepo/pull/10583) - fix(docs): inconsistent command with the illustration by [@&#8203;wilsonwangdev](https://redirect.github.com/wilsonwangdev) in [https://github.com/vercel/turborepo/pull/10596](https://redirect.github.com/vercel/turborepo/pull/10596) - fix(docs): inconsistent turbo command with the illustration by [@&#8203;wilsonwangdev](https://redirect.github.com/wilsonwangdev) in [https://github.com/vercel/turborepo/pull/10602](https://redirect.github.com/vercel/turborepo/pull/10602) - docs: update Vitest recommendations by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10621](https://redirect.github.com/vercel/turborepo/pull/10621) - docs: clarify default inputs behavior by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10628](https://redirect.github.com/vercel/turborepo/pull/10628) - docs: fixing --no-cache alert by [@&#8203;0ri0nexe](https://redirect.github.com/0ri0nexe) in [https://github.com/vercel/turborepo/pull/10653](https://redirect.github.com/vercel/turborepo/pull/10653) - feat(auth): optional callback port by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10666](https://redirect.github.com/vercel/turborepo/pull/10666) ##### Examples - fix: with-svelte example builds by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10517](https://redirect.github.com/vercel/turborepo/pull/10517) - chore(deps-dev): bump the basic group in /examples/basic with 3 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10531](https://redirect.github.com/vercel/turborepo/pull/10531)1 - chore(deps-dev): bump the with-svelte group in /examples/with-svelte with 3 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10532](https://redirect.github.com/vercel/turborepo/pull/10532)2 - chore(deps-dev): bump turbo from 2.5.3 to 2.5.4 in /examples/with-shell-commands by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10533](https://redirect.github.com/vercel/turborepo/pull/10533)3 - chore(deps-dev): bump the with-tailwind group in /examples/with-tailwind with 3 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10534](https://redirect.github.com/vercel/turborepo/pull/10534)4 - chore(deps): bump the non-monorepo group in /examples/non-monorepo with 6 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10535](https://redirect.github.com/vercel/turborepo/pull/10535)5 - chore(deps-dev): bump the kitchen-sink group in /examples/kitchen-sink with 5 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10536](https://redirect.github.com/vercel/turborepo/pull/10536)6 - chore(deps-dev): bump eslint-plugin-react from 7.37.4 to 7.37.5 in /examples/basic by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10553](https://redirect.github.com/vercel/turborepo/pull/10553)3 - chore(deps): bump the non-monorepo group in /examples/non-monorepo with 3 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10554](https://redirect.github.com/vercel/turborepo/pull/10554)4 - chore(deps-dev): bump [@&#8203;types/node](https://redirect.github.com/types/node) from 22.15.3 to 22.15.30 in /examples/with-tailwind by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10555](https://redirect.github.com/vercel/turborepo/pull/10555)5 - chore(deps-dev): bump [@&#8203;sveltejs/vite-plugin-svelte](https://redirect.github.com/sveltejs/vite-plugin-svelte) from 5.0.3 to 5.1.0 in /examples/with-svelte in the with-svelte group by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10556](https://redirect.github.com/vercel/turborepo/pull/10556)6 - chore(deps-dev): bump [@&#8203;vitejs/plugin-react](https://redirect.github.com/vitejs/plugin-react) from 4.5.0 to 4.5.1 in /examples/kitchen-sink by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10557](https://redirect.github.com/vercel/turborepo/pull/10557)7 - fix(example/with-docker): jest can’t resolve @&#8203;repo/jest-presets/node by [@&#8203;d0lwl0b](https://redirect.github.com/d0lwl0b) in [https://github.com/vercel/turborepo/pull/10551](https://redirect.github.com/vercel/turborepo/pull/10551) - fix(non-monorepo): correct devDependency from 'turb' to 'turbo' by [@&#8203;DiegoDev2](https://redirect.github.com/DiegoDev2) in [https://github.com/vercel/turborepo/pull/10526](https://redirect.github.com/vercel/turborepo/pull/10526) - chore(deps-dev): bump the basic group in /examples/basic with 3 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10567](https://redirect.github.com/vercel/turborepo/pull/10567)7 - chore(deps): bump the kitchen-sink group in /examples/kitchen-sink with 6 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10568](https://redirect.github.com/vercel/turborepo/pull/10568)8 - chore(deps-dev): bump the with-svelte group in /examples/with-svelte with 4 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10569](https://redirect.github.com/vercel/turborepo/pull/10569)9 - chore(deps-dev): bump the with-tailwind group in /examples/with-tailwind with 3 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10570](https://redirect.github.com/vercel/turborepo/pull/10570)0 - fix(example): add missing Tailwind import to shared ui styles by [@&#8203;sahyl](https://redirect.github.com/sahyl) in [https://github.com/vercel/turborepo/pull/10579](https://redirect.github.com/vercel/turborepo/pull/10579) - chore(deps-dev): bump eslint from 9.28.0 to 9.29.0 in /examples/non-monorepo in the non-monorepo group by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10571](https://redirect.github.com/vercel/turborepo/pull/10571)1 - docs(example): use npx turbo and show filtering by [@&#8203;sdavids](https://redirect.github.com/sdavids) in [https://github.com/vercel/turborepo/pull/10500](https://redirect.github.com/vercel/turborepo/pull/10500) - chore(deps-dev): bump the kitchen-sink group in /examples/kitchen-sink with 2 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10594](https://redirect.github.com/vercel/turborepo/pull/10594)4 - chore(deps-dev): bump prettier from 3.5.3 to 3.6.0 in /examples/with-tailwind in the with-tailwind group by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10595](https://redirect.github.com/vercel/turborepo/pull/10595)5 - chore(deps-dev): bump prettier from 3.5.3 to 3.6.0 in /examples/basic in the basic group by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10597](https://redirect.github.com/vercel/turborepo/pull/10597)7 - chore(deps-dev): bump the with-svelte group in /examples/with-svelte with 2 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10598](https://redirect.github.com/vercel/turborepo/pull/10598)8 - chore(deps): bump next from 15.3.3 to 15.3.4 in /examples/non-monorepo by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10593](https://redirect.github.com/vercel/turborepo/pull/10593)3 - chore(deps-dev): bump the with-svelte group in /examples/with-svelte with 3 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10613](https://redirect.github.com/vercel/turborepo/pull/10613)3 - chore(deps-dev): bump the basic group in /examples/basic with 3 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10614](https://redirect.github.com/vercel/turborepo/pull/10614)4 - chore(deps-dev): bump the kitchen-sink group in /examples/kitchen-sink with 5 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10615](https://redirect.github.com/vercel/turborepo/pull/10615)5 - chore(deps-dev): bump the with-tailwind group in /examples/with-tailwind with 3 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10616](https://redirect.github.com/vercel/turborepo/pull/10616)6 - refactor(examples): remove duplicate Next.js plugin from app tsconfig files by [@&#8203;JeongHwan-dev](https://redirect.github.com/JeongHwan-dev) in [https://github.com/vercel/turborepo/pull/10612](https://redirect.github.com/vercel/turborepo/pull/10612) - chore(deps-dev): bump globals from 16.2.0 to 16.3.0 in /examples/kitchen-sink in the kitchen-sink group by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10643](https://redirect.github.com/vercel/turborepo/pull/10643)3 - chore(deps-dev): bump globals from 16.2.0 to 16.3.0 in /examples/with-tailwind in the with-tailwind group by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10644](https://redirect.github.com/vercel/turborepo/pull/10644)4 - chore(deps-dev): bump svelte from 5.34.3 to 5.35.2 in /examples/with-svelte in the with-svelte group by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10645](https://redirect.github.com/vercel/turborepo/pull/10645)5 - chore(deps-dev): bump eslint from 9.29.0 to 9.30.1 in /examples/non-monorepo in the non-monorepo group by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10647](https://redirect.github.com/vercel/turborepo/pull/10647)7 - chore(deps-dev): bump globals from 16.2.0 to 16.3.0 in /examples/basic in the basic group by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10646](https://redirect.github.com/vercel/turborepo/pull/10646)6 - fix(examples): css specificity in Tailwind example by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10657](https://redirect.github.com/vercel/turborepo/pull/10657) - refactor(examples): update CSS variable names to use consistent --color- prefix in tailwind examples by [@&#8203;eric-hjh](https://redirect.github.com/eric-hjh) in [https://github.com/vercel/turborepo/pull/10662](https://redirect.github.com/vercel/turborepo/pull/10662) - fix(examples): vitest version upgrade by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10667](https://redirect.github.com/vercel/turborepo/pull/10667) - chore(deps-dev): bump the with-svelte group in /examples/with-svelte with 3 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10669](https://redirect.github.com/vercel/turborepo/pull/10669)9 - chore(deps-dev): bump the kitchen-sink group in /examples/kitchen-sink with 5 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10670](https://redirect.github.com/vercel/turborepo/pull/10670)0 - fix: typescript-config export form react-native-web by [@&#8203;safaiyeh](https://redirect.github.com/safaiyeh) in [https://github.com/vercel/turborepo/pull/10671](https://redirect.github.com/vercel/turborepo/pull/10671) - chore(deps-dev): bump the basic group in /examples/basic with 3 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10673](https://redirect.github.com/vercel/turborepo/pull/10673)3 - fix(examples): update vitest config paths for packages and apps in `with-vitest` by [@&#8203;kenfdev](https://redirect.github.com/kenfdev) in [https://github.com/vercel/turborepo/pull/10675](https://redirect.github.com/vercel/turborepo/pull/10675) - chore(deps-dev): bump the with-tailwind group in /examples/with-tailwind with 3 updates by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10674](https://redirect.github.com/vercel/turborepo/pull/10674)4 - chore(deps-dev): bump eslint from 9.30.1 to 9.31.0 in /examples/non-monorepo in the non-monorepo group by [@&#8203;dependabot](https://redirect.github.com/dependabot)\[bot] in[https://github.com/vercel/turborepo/pull/10672](https://redirect.github.com/vercel/turborepo/pull/10672)2 ##### Changelog - feat(turbo.json): allow for trailing commas by [@&#8203;chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/10537](https://redirect.github.com/vercel/turborepo/pull/10537) - fix(pnpm): respect deep for linkWorkspacePackages by [@&#8203;chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/10558](https://redirect.github.com/vercel/turborepo/pull/10558) - fix: vue/nuxt devtool component inspector by [@&#8203;NamesMT](https://redirect.github.com/NamesMT) in [https://github.com/vercel/turborepo/pull/10527](https://redirect.github.com/vercel/turborepo/pull/10527) - chore: typo Fixes and Clarity Enhancements by [@&#8203;leopardracer](https://redirect.github.com/leopardracer) in [https://github.com/vercel/turborepo/pull/10574](https://redirect.github.com/vercel/turborepo/pull/10574) - chore: fix formatting in JSON file by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10589](https://redirect.github.com/vercel/turborepo/pull/10589) - feat(env): add Windows user profile variables to pass-through by [@&#8203;yamadayutaka](https://redirect.github.com/yamadayutaka) in [https://github.com/vercel/turborepo/pull/10588](https://redirect.github.com/vercel/turborepo/pull/10588) - feat: opt into breaking changes and pre-stable features early with `turbo.json` configuration by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10590](https://redirect.github.com/vercel/turborepo/pull/10590) - refactor(turborepo-updater): chain environment variable iterators in should\_skip\_notification by [@&#8203;JeongHwan-dev](https://redirect.github.com/JeongHwan-dev) in [https://github.com/vercel/turborepo/pull/10622](https://redirect.github.com/vercel/turborepo/pull/10622) - chore: remove unused Rust dependencies by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10630](https://redirect.github.com/vercel/turborepo/pull/10630) - refactor: add spans to some turbo.json fields by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10627](https://redirect.github.com/vercel/turborepo/pull/10627) - chore: .cursor/rules by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10636](https://redirect.github.com/vercel/turborepo/pull/10636) - refactor: improve messaging in global warning by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10629](https://redirect.github.com/vercel/turborepo/pull/10629) - refactor: consolidate configuration file resolving by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10619](https://redirect.github.com/vercel/turborepo/pull/10619) - chore([@&#8203;turbo/telemetry](https://redirect.github.com/turbo/telemetry)): fix README link by [@&#8203;robmorgan](https://redirect.github.com/robmorgan) in [https://github.com/vercel/turborepo/pull/10603](https://redirect.github.com/vercel/turborepo/pull/10603) - chore: add unit test coverage reporter by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10641](https://redirect.github.com/vercel/turborepo/pull/10641) - test(telemetry): add telemetry API client tests by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10650](https://redirect.github.com/vercel/turborepo/pull/10650) - test(turborepo-analytics): improve unit test coverage by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10651](https://redirect.github.com/vercel/turborepo/pull/10651) - refactor: move config file discovery to shared util by [@&#8203;anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/10677](https://redirect.github.com/vercel/turborepo/pull/10677) - fix(query): pin to last graphiql version with artifacts by [@&#8203;chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/10685](https://redirect.github.com/vercel/turborepo/pull/10685) #### New Contributors - [@&#8203;d0lwl0b](https://redirect.github.com/d0lwl0b) made their first contribution in [https://github.com/vercel/turborepo/pull/10551](https://redirect.github.com/vercel/turborepo/pull/10551) - [@&#8203;ashish0kumar](https://redirect.github.com/ashish0kumar) made their first contribution in [https://github.com/vercel/turborepo/pull/10560](https://redirect.github.com/vercel/turborepo/pull/10560) - [@&#8203;DiegoDev2](https://redirect.github.com/DiegoDev2) made their first contribution in [https://github.com/vercel/turborepo/pull/10526](https://redirect.github.com/vercel/turborepo/pull/10526) - [@&#8203;jihwan1211](https://redirect.github.com/jihwan1211) made their first contribution in [https://github.com/vercel/turborepo/pull/10573](https://redirect.github.com/vercel/turborepo/pull/10573) - [@&#8203;leopardracer](https://redirect.github.com/leopardracer) made their first contribution in [https://github.com/vercel/turborepo/pull/10574](https://redirect.github.com/vercel/turborepo/pull/10574) - [@&#8203;sahyl](https://redirect.github.com/sahyl) made their first contribution in [https://github.com/vercel/turborepo/pull/10579](https://redirect.github.com/vercel/turborepo/pull/10579) - [@&#8203;yamadayutaka](https://redirect.github.com/yamadayutaka) made their first contribution in [https://github.com/vercel/turborepo/pull/10588](https://redirect.github.com/vercel/turborepo/pull/10588) - [@&#8203;sdavids](https://redirect.github.com/sdavids) made their first contribution in [https://github.com/vercel/turborepo/pull/10500](https://redirect.github.com/vercel/turborepo/pull/10500) - [@&#8203;wilsonwangdev](https://redirect.github.com/wilsonwangdev) made their first contribution in [https://github.com/vercel/turborepo/pull/10596](https://redirect.github.com/vercel/turborepo/pull/10596) - [@&#8203;JeongHwan-dev](https://redirect.github.com/JeongHwan-dev) made their first contribution in [https://github.com/vercel/turborepo/pull/10612](https://redirect.github.com/vercel/turborepo/pull/10612) - [@&#8203;robmorgan](https://redirect.github.com/robmorgan) made their first contribution in [https://github.com/vercel/turborepo/pull/10603](https://redirect.github.com/vercel/turborepo/pull/10603) - [@&#8203;0ri0nexe](https://redirect.github.com/0ri0nexe) made their first contribution in [https://github.com/vercel/turborepo/pull/10653](https://redirect.github.com/vercel/turborepo/pull/10653) - [@&#8203;eric-hjh](https://redirect.github.com/eric-hjh) made their first contribution in [https://github.com/vercel/turborepo/pull/10662](https://redirect.github.com/vercel/turborepo/pull/10662) - [@&#8203;safaiyeh](https://redirect.github.com/safaiyeh) made their first contribution in [https://github.com/vercel/turborepo/pull/10671](https://redirect.github.com/vercel/turborepo/pull/10671) - [@&#8203;kenfdev](https://redirect.github.com/kenfdev) made their first contribution in [https://github.com/vercel/turborepo/pull/10675](https://redirect.github.com/vercel/turborepo/pull/10675) **Full Changelog**: vercel/turborepo@v2.5.4...v2.5.5 </details> <details> <summary>microsoft/TypeScript (typescript)</summary> ### [`v5.9.2`](https://redirect.github.com/microsoft/TypeScript/compare/v5.8.3...5be33469d551655d878876faa9e30aa3b49f8ee9) [Compare Source](https://redirect.github.com/microsoft/TypeScript/compare/v5.8.3...v5.9.2) </details> --- ### Configuration 📅 **Schedule**: Branch creation - "every weekday" (UTC), 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://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/apify/apify-sdk-js). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC42Mi4xIiwidXBkYXRlZEluVmVyIjoiNDEuOTEuMSIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6W119--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jindřich Bär <[email protected]>
1 parent 705ae50 commit 7922067

File tree

14 files changed

+52
-63
lines changed

14 files changed

+52
-63
lines changed

.github/workflows/check-pr-title.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ jobs:
99
name: 'Check PR title'
1010
runs-on: ubuntu-22.04
1111
steps:
12-
- uses: amannn/action-semantic-pull-request@v6.0.1
12+
- uses: amannn/action-semantic-pull-request@v6.1.1
1313
env:
1414
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

package-lock.json

Lines changed: 42 additions & 42 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,12 +87,12 @@
8787
"lerna": "^8.1.8",
8888
"lint-staged": "^16.0.0",
8989
"playwright": "^1.46.0",
90-
"prettier": "3.5.3",
90+
"prettier": "3.6.2",
9191
"puppeteer": "^24.0.0",
9292
"rimraf": "^6.0.1",
9393
"tsx": "^4.16.5",
94-
"turbo": "2.5.4",
95-
"typescript": "~5.8.0",
94+
"turbo": "2.5.6",
95+
"typescript": "~5.9.0",
9696
"typescript-eslint": "^8.28.0",
9797
"vite-tsconfig-paths": "^5.0.0",
9898
"vitest": "^3.0.0"

packages/actor-scraper/camoufox-scraper/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"@apify/tsconfig": "^0.1.0",
1919
"@types/node": "^22.7.4",
2020
"tsx": "^4.19.1",
21-
"typescript": "~5.8.0"
21+
"typescript": "~5.9.0"
2222
},
2323
"scripts": {
2424
"start": "npm run start:dev",

packages/actor-scraper/cheerio-scraper/README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,6 @@ visit the [Mozilla documentation](https://developer.mozilla.org/en-US/docs/Web/J
325325
- ##### **`globalStore: Object`**
326326

327327
Represents an in-memory store that can be used to share data across page function invocations, e.g. state variables, API responses, or other data. The `globalStore` object has an interface similar to JavaScript's [`Map`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Map) object, with a few important differences:
328-
329328
- All `globalStore` functions are `async`; use `await` when calling them.
330329
- Keys must be strings and values must be JSON stringify-able.
331330
- The `forEach()` function is not supported.

packages/actor-scraper/cheerio-scraper/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@apify/tsconfig": "^0.1.0",
1414
"@types/node": "^22.7.4",
1515
"tsx": "^4.19.1",
16-
"typescript": "~5.8.0"
16+
"typescript": "~5.9.0"
1717
},
1818
"peerDependencies": {
1919
"cheerio": "^1.0.0-rc.12"

packages/actor-scraper/jsdom-scraper/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@apify/tsconfig": "^0.1.0",
1414
"@types/node": "^22.7.4",
1515
"tsx": "^4.19.1",
16-
"typescript": "~5.8.0"
16+
"typescript": "~5.9.0"
1717
},
1818
"peerDependencies": {
1919
"jsdom": "^26.0.0"

packages/actor-scraper/playwright-scraper/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
"@apify/tsconfig": "^0.1.0",
1818
"@types/node": "^22.7.4",
1919
"tsx": "^4.19.1",
20-
"typescript": "~5.8.0"
20+
"typescript": "~5.9.0"
2121
},
2222
"scripts": {
2323
"start": "npm run start:dev",

packages/actor-scraper/puppeteer-scraper/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
"@apify/tsconfig": "^0.1.0",
1616
"@types/node": "^22.7.4",
1717
"tsx": "^4.19.1",
18-
"typescript": "~5.8.0"
18+
"typescript": "~5.9.0"
1919
},
2020
"scripts": {
2121
"start": "npm run start:dev",

packages/actor-scraper/web-scraper/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@types/content-type": "^1.1.8",
2121
"@types/node": "^22.7.4",
2222
"tsx": "^4.19.1",
23-
"typescript": "~5.8.0"
23+
"typescript": "~5.9.0"
2424
},
2525
"scripts": {
2626
"start": "npm run start:dev",

0 commit comments

Comments
 (0)