{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":90831455,"defaultBranch":"master","name":"line-bot-sdk-nodejs","ownerLogin":"line","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2017-05-10T07:00:42.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/13128444?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1720884940.0","currentOid":""},"activityList":{"items":[{"before":"8735e73189973c19d70fe844cc1b159374a7bf42","after":"f3ed3d929d458f85125d19327aaf4402f9220b15","ref":"refs/heads/renovate/vitepress-1.x-lockfile","pushedAt":"2024-07-14T10:45:18.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update dependency vitepress to v1.3.1","shortMessageHtmlLink":"Update dependency vitepress to v1.3.1"}},{"before":"ed031aad9f3b5751e8f2e75ab5412cdabda8ab74","after":null,"ref":"refs/heads/renovate/prettier-3.x","pushedAt":"2024-07-13T18:27:07.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"}},{"before":"afd15e79981f1aed8196370b5089df95de369aa4","after":"8735e73189973c19d70fe844cc1b159374a7bf42","ref":"refs/heads/renovate/vitepress-1.x-lockfile","pushedAt":"2024-07-13T18:27:05.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update dependency vitepress to v1.3.0","shortMessageHtmlLink":"Update dependency vitepress to v1.3.0"}},{"before":"0c5eb87e6ad98192c135a925f198a786d2824717","after":"36a06f8e0dfedfdfae5f9c3e8684523473d9c7f0","ref":"refs/heads/master","pushedAt":"2024-07-13T15:38:16.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update dependency prettier to v3.3.3 (#902)\n\n[![Mend\nRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)\n\nThis PR contains the following updates:\n\n| Package | Change | Age | Adoption | Passing | Confidence |\n|---|---|---|---|---|---|\n| [prettier](https://prettier.io)\n([source](https://togithub.com/prettier/prettier)) | [`3.3.2` ->\n`3.3.3`](https://renovatebot.com/diffs/npm/prettier/3.3.2/3.3.3) |\n[![age](https://developer.mend.io/api/mc/badges/age/npm/prettier/3.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prettier/3.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prettier/3.3.2/3.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prettier/3.3.2/3.3.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n\n---\n\n### Release Notes\n\n
\nprettier/prettier (prettier)\n\n###\n[`v3.3.3`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#333)\n\n[Compare\nSource](https://togithub.com/prettier/prettier/compare/3.3.2...3.3.3)\n\n[diff](https://togithub.com/prettier/prettier/compare/3.3.2...3.3.3)\n\n##### Add parentheses for nullish coalescing in ternary\n([#​16391](https://togithub.com/prettier/prettier/pull/16391) by\n[@​cdignam-segment](https://togithub.com/cdignam-segment))\n\nThis change adds clarity to operator precedence.\n\n\n\n```js\n// Input\nfoo ? bar ?? foo : baz;\nfoo ?? bar ? a : b;\na ? b : foo ?? bar;\n\n// Prettier 3.3.2\nfoo ? bar ?? foo : baz;\nfoo ?? bar ? a : b;\na ? b : foo ?? bar;\n\n// Prettier 3.3.3\nfoo ? (bar ?? foo) : baz;\n(foo ?? bar) ? a : b;\na ? b : (foo ?? bar);\n```\n\n##### Add parentheses for decorator expressions\n([#​16458](https://togithub.com/prettier/prettier/pull/16458) by\n[@​y-schneider](https://togithub.com/y-schneider))\n\nPrevent parentheses around member expressions or tagged template\nliterals from being removed to follow the stricter parsing rules of\nTypeScript 5.5.\n\n\n\n```ts\n// Input\n@​(foo`tagged template`)\nclass X {}\n\n// Prettier 3.3.2\n@​foo`tagged template`\nclass X {}\n\n// Prettier 3.3.3\n@​(foo`tagged template`)\nclass X {}\n```\n\n##### Support `@let` declaration syntax\n([#​16474](https://togithub.com/prettier/prettier/pull/16474) by\n[@​sosukesuzuki](https://togithub.com/sosukesuzuki))\n\nAdds support for Angular v18 `@let` declaration syntax.\n\nPlease see the following code example. The `@let` declaration allows you\nto define local variables within the template:\n\n\n\n```html\n@​let name = 'Frodo';\n\n

Dashboard for {{name}}

\nHello, {{name}}\n```\n\nFor more details, please refer to the excellent blog post by the Angular\nTeam: [Introducing @​let in\nAngular](https://blog.angular.dev/introducing-let-in-angular-686f9f383f0f).\n\nWe also appreciate the Angular Team for kindly answering our questions\nto implement this feature.\n\n
\n\n---\n\n### Configuration\n\n๐Ÿ“… **Schedule**: Branch creation - At any time (no schedule defined),\nAutomerge - At any time (no schedule defined).\n\n๐Ÿšฆ **Automerge**: Enabled.\n\nโ™ป **Rebasing**: Whenever PR becomes conflicted, or you tick the\nrebase/retry checkbox.\n\n๐Ÿ”• **Ignore**: Close this PR and you won't be reminded about this update\nagain.\n\n---\n\n- [ ] If you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has been generated by [Mend\nRenovate](https://www.mend.io/free-developer-tools/renovate/). View\nrepository job log\n[here](https://developer.mend.io/github/line/line-bot-sdk-nodejs).\n\n\n\nCo-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Update dependency prettier to v3.3.3 (#902)"}},{"before":null,"after":"ed031aad9f3b5751e8f2e75ab5412cdabda8ab74","ref":"refs/heads/renovate/prettier-3.x","pushedAt":"2024-07-13T15:35:40.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update dependency prettier to v3.3.3","shortMessageHtmlLink":"Update dependency prettier to v3.3.3"}},{"before":"1f6fc2c9d631ef31e304a24d641b0f123b53fdd5","after":null,"ref":"refs/heads/renovate/vitest-monorepo","pushedAt":"2024-07-11T01:50:30.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"}},{"before":"48f7ff7e41dee77ac853e429b3bb8a4a31a3f81a","after":"afd15e79981f1aed8196370b5089df95de369aa4","ref":"refs/heads/renovate/vitepress-1.x-lockfile","pushedAt":"2024-07-11T01:50:28.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update dependency vitepress to v1.3.0","shortMessageHtmlLink":"Update dependency vitepress to v1.3.0"}},{"before":"cc1dd44b3fbf40ad92b5e42c02f5653e8f83a1d0","after":"0c5eb87e6ad98192c135a925f198a786d2824717","ref":"refs/heads/master","pushedAt":"2024-07-10T21:56:44.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update vitest monorepo to v2.0.2 (#900)\n\n[![Mend\nRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)\n\nThis PR contains the following updates:\n\n| Package | Change | Age | Adoption | Passing | Confidence |\n|---|---|---|---|---|---|\n|\n[@vitest/coverage-v8](https://togithub.com/vitest-dev/vitest/tree/main/packages/coverage-v8#readme)\n([source](https://togithub.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8))\n| [`2.0.1` ->\n`2.0.2`](https://renovatebot.com/diffs/npm/@vitest%2fcoverage-v8/2.0.1/2.0.2)\n|\n[![age](https://developer.mend.io/api/mc/badges/age/npm/@vitest%2fcoverage-v8/2.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@vitest%2fcoverage-v8/2.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@vitest%2fcoverage-v8/2.0.1/2.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@vitest%2fcoverage-v8/2.0.1/2.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n| [vitest](https://togithub.com/vitest-dev/vitest)\n([source](https://togithub.com/vitest-dev/vitest/tree/HEAD/packages/vitest))\n| [`2.0.1` ->\n`2.0.2`](https://renovatebot.com/diffs/npm/vitest/2.0.1/2.0.2) |\n[![age](https://developer.mend.io/api/mc/badges/age/npm/vitest/2.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vitest/2.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vitest/2.0.1/2.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vitest/2.0.1/2.0.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n\n---\n\n### Release Notes\n\n
\nvitest-dev/vitest (@​vitest/coverage-v8)\n\n###\n[`v2.0.2`](https://togithub.com/vitest-dev/vitest/compare/v2.0.1...v2.0.2)\n\n[Compare\nSource](https://togithub.com/vitest-dev/vitest/compare/v2.0.1...v2.0.2)\n\n
\n\n
\nvitest-dev/vitest (vitest)\n\n###\n[`v2.0.2`](https://togithub.com/vitest-dev/vitest/compare/v2.0.1...v2.0.2)\n\n[Compare\nSource](https://togithub.com/vitest-dev/vitest/compare/v2.0.1...v2.0.2)\n\n
\n\n---\n\n### Configuration\n\n๐Ÿ“… **Schedule**: Branch creation - At any time (no schedule defined),\nAutomerge - At any time (no schedule defined).\n\n๐Ÿšฆ **Automerge**: Enabled.\n\nโ™ป **Rebasing**: Whenever PR becomes conflicted, or you tick the\nrebase/retry checkbox.\n\n๐Ÿ”• **Ignore**: Close this PR and you won't be reminded about these\nupdates again.\n\n---\n\n- [ ] If you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has been generated by [Mend\nRenovate](https://www.mend.io/free-developer-tools/renovate/). View\nrepository job log\n[here](https://developer.mend.io/github/line/line-bot-sdk-nodejs).\n\n\n\nCo-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Update vitest monorepo to v2.0.2 (#900)"}},{"before":"0dc81ab461f6c3d3979370869a76078848d18e98","after":null,"ref":"refs/heads/renovate/org.apache.maven.plugins-maven-surefire-plugin-3.x","pushedAt":"2024-07-10T21:54:39.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"}},{"before":"6107d3852a1a4a3191a2bd4a33cc203ae83b9092","after":"48f7ff7e41dee77ac853e429b3bb8a4a31a3f81a","ref":"refs/heads/renovate/vitepress-1.x-lockfile","pushedAt":"2024-07-10T21:54:36.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update dependency vitepress to v1.3.0","shortMessageHtmlLink":"Update dependency vitepress to v1.3.0"}},{"before":"45cff9b18c3fc891f766f2028827f2094ba676fe","after":"1f6fc2c9d631ef31e304a24d641b0f123b53fdd5","ref":"refs/heads/renovate/vitest-monorepo","pushedAt":"2024-07-10T21:54:11.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update vitest monorepo to v2.0.2","shortMessageHtmlLink":"Update vitest monorepo to v2.0.2"}},{"before":"c7ff5e62e392224d34e0bae71b50d4df0b8fae98","after":"cc1dd44b3fbf40ad92b5e42c02f5653e8f83a1d0","ref":"refs/heads/master","pushedAt":"2024-07-10T20:01:07.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update dependency org.apache.maven.plugins:maven-surefire-plugin to v3.3.1 (#901)\n\n[![Mend\nRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)\n\nThis PR contains the following updates:\n\n| Package | Change | Age | Adoption | Passing | Confidence |\n|---|---|---|---|---|---|\n|\n[org.apache.maven.plugins:maven-surefire-plugin](https://maven.apache.org/surefire/)\n| `3.3.0` -> `3.3.1` |\n[![age](https://developer.mend.io/api/mc/badges/age/maven/org.apache.maven.plugins:maven-surefire-plugin/3.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/org.apache.maven.plugins:maven-surefire-plugin/3.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/org.apache.maven.plugins:maven-surefire-plugin/3.3.0/3.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.apache.maven.plugins:maven-surefire-plugin/3.3.0/3.3.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n\n---\n\n### Configuration\n\n๐Ÿ“… **Schedule**: Branch creation - At any time (no schedule defined),\nAutomerge - At any time (no schedule defined).\n\n๐Ÿšฆ **Automerge**: Enabled.\n\nโ™ป **Rebasing**: Whenever PR becomes conflicted, or you tick the\nrebase/retry checkbox.\n\n๐Ÿ”• **Ignore**: Close this PR and you won't be reminded about this update\nagain.\n\n---\n\n- [ ] If you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has been generated by [Mend\nRenovate](https://www.mend.io/free-developer-tools/renovate/). View\nrepository job log\n[here](https://developer.mend.io/github/line/line-bot-sdk-nodejs).\n\n\n\nCo-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Update dependency org.apache.maven.plugins:maven-surefire-plugin to vโ€ฆ"}},{"before":null,"after":"0dc81ab461f6c3d3979370869a76078848d18e98","ref":"refs/heads/renovate/org.apache.maven.plugins-maven-surefire-plugin-3.x","pushedAt":"2024-07-10T19:58:20.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update dependency org.apache.maven.plugins:maven-surefire-plugin to v3.3.1","shortMessageHtmlLink":"Update dependency org.apache.maven.plugins:maven-surefire-plugin to vโ€ฆ"}},{"before":null,"after":"45cff9b18c3fc891f766f2028827f2094ba676fe","ref":"refs/heads/renovate/vitest-monorepo","pushedAt":"2024-07-10T16:58:03.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update vitest monorepo to v2.0.2","shortMessageHtmlLink":"Update vitest monorepo to v2.0.2"}},{"before":"54c08be4d18fcfec48f274a29ddef1ff3ec9ee0e","after":null,"ref":"refs/heads/renovate/vitest-monorepo","pushedAt":"2024-07-08T20:08:07.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"}},{"before":"64fa881e123f20ead82509ab0bb4511497094e59","after":"6107d3852a1a4a3191a2bd4a33cc203ae83b9092","ref":"refs/heads/renovate/vitepress-1.x-lockfile","pushedAt":"2024-07-08T20:08:04.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update dependency vitepress to v1.3.0","shortMessageHtmlLink":"Update dependency vitepress to v1.3.0"}},{"before":"8f17df97b13e8598de149538438235e7e0fcf6d9","after":"c7ff5e62e392224d34e0bae71b50d4df0b8fae98","ref":"refs/heads/master","pushedAt":"2024-07-08T16:42:21.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update vitest monorepo to v2.0.1 (#899)\n\n[![Mend\nRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)\n\nThis PR contains the following updates:\n\n| Package | Change | Age | Adoption | Passing | Confidence |\n|---|---|---|---|---|---|\n|\n[@vitest/coverage-v8](https://togithub.com/vitest-dev/vitest/tree/main/packages/coverage-v8#readme)\n([source](https://togithub.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8))\n| [`2.0.0` ->\n`2.0.1`](https://renovatebot.com/diffs/npm/@vitest%2fcoverage-v8/2.0.0/2.0.1)\n|\n[![age](https://developer.mend.io/api/mc/badges/age/npm/@vitest%2fcoverage-v8/2.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@vitest%2fcoverage-v8/2.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@vitest%2fcoverage-v8/2.0.0/2.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@vitest%2fcoverage-v8/2.0.0/2.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n| [vitest](https://togithub.com/vitest-dev/vitest)\n([source](https://togithub.com/vitest-dev/vitest/tree/HEAD/packages/vitest))\n| [`2.0.0` ->\n`2.0.1`](https://renovatebot.com/diffs/npm/vitest/2.0.0/2.0.1) |\n[![age](https://developer.mend.io/api/mc/badges/age/npm/vitest/2.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vitest/2.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vitest/2.0.0/2.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vitest/2.0.0/2.0.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n\n---\n\n### Release Notes\n\n
\nvitest-dev/vitest (@​vitest/coverage-v8)\n\n###\n[`v2.0.1`](https://togithub.com/vitest-dev/vitest/releases/tag/v2.0.1)\n\n[Compare\nSource](https://togithub.com/vitest-dev/vitest/compare/v2.0.0...v2.0.1)\n\n##### ย ย ย ๐Ÿž Bug Fixes\n\n- **browser**: Correctly inherit browser config in a workspace ย -ย  by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/6054](https://togithub.com/vitest-dev/vitest/issues/6054)\n[(4b03e)](https://togithub.com/vitest-dev/vitest/commit/4b03e72b)\n- **ui**: Move virtual scroller to dev dependencies ย -ย  by\n[@​userquin](https://togithub.com/userquin) in\n[https://github.com/vitest-dev/vitest/issues/6053](https://togithub.com/vitest-dev/vitest/issues/6053)\n[(f94ed)](https://togithub.com/vitest-dev/vitest/commit/f94ede02)\n- **vitest**: Print only running files, not every file ย -ย  by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/6052](https://togithub.com/vitest-dev/vitest/issues/6052)\n[(4d559)](https://togithub.com/vitest-dev/vitest/commit/4d5597df)\n\n##### ย ย ย ย [View changes on\nGitHub](https://togithub.com/vitest-dev/vitest/compare/v2.0.0...v2.0.1)\n\n
\n\n---\n\n### Configuration\n\n๐Ÿ“… **Schedule**: Branch creation - At any time (no schedule defined),\nAutomerge - At any time (no schedule defined).\n\n๐Ÿšฆ **Automerge**: Enabled.\n\nโ™ป **Rebasing**: Whenever PR becomes conflicted, or you tick the\nrebase/retry checkbox.\n\n๐Ÿ”• **Ignore**: Close this PR and you won't be reminded about these\nupdates again.\n\n---\n\n- [ ] If you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has been generated by [Mend\nRenovate](https://www.mend.io/free-developer-tools/renovate/). View\nrepository job log\n[here](https://developer.mend.io/github/line/line-bot-sdk-nodejs).\n\n\n\nCo-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Update vitest monorepo to v2.0.1 (#899)"}},{"before":"d8cda127c6f1d243ebb9a0ffada12445c387e9ab","after":null,"ref":"refs/heads/renovate/major-vitest-monorepo","pushedAt":"2024-07-08T16:40:10.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"}},{"before":"2c043058f9a82c27d7dbe107cc6275f2625a4696","after":"64fa881e123f20ead82509ab0bb4511497094e59","ref":"refs/heads/renovate/vitepress-1.x-lockfile","pushedAt":"2024-07-08T16:40:06.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update dependency vitepress to v1.3.0","shortMessageHtmlLink":"Update dependency vitepress to v1.3.0"}},{"before":null,"after":"54c08be4d18fcfec48f274a29ddef1ff3ec9ee0e","ref":"refs/heads/renovate/vitest-monorepo","pushedAt":"2024-07-08T16:39:39.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update vitest monorepo to v2.0.1","shortMessageHtmlLink":"Update vitest monorepo to v2.0.1"}},{"before":"00afb9e13e359467f8a7ffa222b2974935b79bc0","after":"8f17df97b13e8598de149538438235e7e0fcf6d9","ref":"refs/heads/master","pushedAt":"2024-07-08T12:08:10.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update vitest monorepo to v2 (major) (#898)\n\n[![Mend\nRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)\n\nThis PR contains the following updates:\n\n| Package | Change | Age | Adoption | Passing | Confidence |\n|---|---|---|---|---|---|\n|\n[@vitest/coverage-v8](https://togithub.com/vitest-dev/vitest/tree/main/packages/coverage-v8#readme)\n([source](https://togithub.com/vitest-dev/vitest/tree/HEAD/packages/coverage-v8))\n| [`^1.4.0` ->\n`^2.0.0`](https://renovatebot.com/diffs/npm/@vitest%2fcoverage-v8/1.6.0/2.0.0)\n|\n[![age](https://developer.mend.io/api/mc/badges/age/npm/@vitest%2fcoverage-v8/2.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@vitest%2fcoverage-v8/2.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@vitest%2fcoverage-v8/1.6.0/2.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@vitest%2fcoverage-v8/1.6.0/2.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n| [vitest](https://togithub.com/vitest-dev/vitest)\n([source](https://togithub.com/vitest-dev/vitest/tree/HEAD/packages/vitest))\n| [`^1.4.0` ->\n`^2.0.0`](https://renovatebot.com/diffs/npm/vitest/1.6.0/2.0.0) |\n[![age](https://developer.mend.io/api/mc/badges/age/npm/vitest/2.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/vitest/2.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/vitest/1.6.0/2.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/vitest/1.6.0/2.0.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n\n---\n\n### Release Notes\n\n
\nvitest-dev/vitest (@​vitest/coverage-v8)\n\n###\n[`v2.0.0`](https://togithub.com/vitest-dev/vitest/releases/tag/v2.0.0)\n\nVitest 2.0 is here! This release page lists all changes made to the\nproject during the beta. For the migration guide, please refer to the\n[documentation](https://vitest.dev/guide/migration.html#migrating-to-vitest-2-0).\n\n##### ๐Ÿšจ Breaking Changes\n\n- Simplify mock function generic types and align with jest - by\n**[@​hi-ogawa](https://togithub.com/hi-ogawa)** in\n[https://github.com/vitest-dev/vitest/pull/4784](https://togithub.com/vitest-dev/vitest/pull/4784)\n[(a0c1d37)](https://togithub.com/vitest-dev/vitest/commit/a0c1d371edb35abfa0e6f53b05086a54d2ecc0a6)\n- Remove `--segfault-retry` - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5514](https://togithub.com/vitest-dev/vitest/issues/5514)\n[(ed60e)](https://togithub.com/vitest-dev/vitest/commit/ed60e405e)\n- This flag was introduced to combat `threads` segfaults. Our current\nrecommendation is to use the new default `forks` pool instead.\n- Run suite hooks in a stack - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5609](https://togithub.com/vitest-dev/vitest/issues/5609)\n[(1277d)](https://togithub.com/vitest-dev/vitest/commit/1277dc1e3)\n- This feels like a more sensible default. Especially with the new\n[`onTestFinished`](https://vitest.dev/api/#ontestfinished) hook. This\ncan make your tests run a little bit slower.\n- Enable `coverage.ignoreEmptyLines` by default - by\n[@​AriPerkkio](https://togithub.com/AriPerkkio) in\n[https://github.com/vitest-dev/vitest/issues/5543](https://togithub.com/vitest-dev/vitest/issues/5543)\n[(31994)](https://togithub.com/vitest-dev/vitest/commit/31994942f)\n- โš ๏ธ This change may cause significant differences in your coverage\nresults compared to Vitest v1. These changes are expected as coverage\nreporting is now more accurate. See\n[https://github.com/vitest-dev/vitest/issues/5423](https://togithub.com/vitest-dev/vitest/issues/5423)\nfor more details.\n- Add correct location and snapshot fields in json reporter - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5434](https://togithub.com/vitest-dev/vitest/issues/5434)\n[(bcccc)](https://togithub.com/vitest-dev/vitest/commit/bcccce6df)\n- Previously, the `location` field pointed to the error location instead\nof the test location. Now it is aligned with jest and contains the\n`line` and `column` of a test function, but requires\n[`includeTaskLocation`](https://vitest.dev/config/#includeTaskLocation)\nto be enabled.\n- Update dependency chai to v5 - by **renovate\\[bot]** and\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5135](https://togithub.com/vitest-dev/vitest/issues/5135)\n[(73646)](https://togithub.com/vitest-dev/vitest/commit/73646b638)\n- Remove watchExclude - by\n[@​patak-dev](https://togithub.com/patak-dev) in\n[https://github.com/vitest-dev/vitest/issues/5177](https://togithub.com/vitest-dev/vitest/issues/5177)\n[(d7371)](https://togithub.com/vitest-dev/vitest/commit/d7371eae3)\n- Change default `pool` to `'forks'` - by\n[@​AriPerkkio](https://togithub.com/AriPerkkio) in\n[https://github.com/vitest-dev/vitest/issues/5047](https://togithub.com/vitest-dev/vitest/issues/5047)\n[(7f8f9)](https://togithub.com/vitest-dev/vitest/commit/7f8f9c0c0)\n - This change is done for compatibility issues\n- This pool may be slightly slower than previous `threads` pool:\nhttps://vitest.dev/guide/improving-performance.html#pool\n- `--merge-reports` to support coverage - by\n[@​AriPerkkio](https://togithub.com/AriPerkkio) in\n[https://github.com/vitest-dev/vitest/issues/5736](https://togithub.com/vitest-dev/vitest/issues/5736)\n[(b7438)](https://togithub.com/vitest-dev/vitest/commit/b7438b9be)\n- Add promise-based return assertions, do not auto-resolve returned\npromises - by [@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5749](https://togithub.com/vitest-dev/vitest/issues/5749)\n[(5f710)](https://togithub.com/vitest-dev/vitest/commit/5f710182e)\n- โš ๏ธ Vitest no longer unwraps promises in `spy.mock.returns`. If the\nfunction is async or returns a promise, it will always succeed and have\na `Promise` in `results`. To make migration easier, we introduced\n`spy.mock.settledResults` that unwraps promises and\n`expect().toHaveResolved()` matcher that accepts unwrapped value.\n- Do not exit process if global setup has failed - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5726](https://togithub.com/vitest-dev/vitest/issues/5726)\n[(ddb09)](https://togithub.com/vitest-dev/vitest/commit/ddb09eb12)\n- Don't exit process if config failed - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5715](https://togithub.com/vitest-dev/vitest/issues/5715)\n[(f232f)](https://togithub.com/vitest-dev/vitest/commit/f232fdd61)\n- Add meta to `json` output - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5802](https://togithub.com/vitest-dev/vitest/issues/5802)\n[(dd754)](https://togithub.com/vitest-dev/vitest/commit/dd754c103)\n- Rename `indexScripts` to `orchestratorScripts` in the browser config -\nby [@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5842](https://togithub.com/vitest-dev/vitest/issues/5842)\n[(49f34)](https://togithub.com/vitest-dev/vitest/commit/49f34ec47)\n- Add \"vitest list\" API to print collected tests without running them -\nby [@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/6013](https://togithub.com/vitest-dev/vitest/issues/6013)\n[(583dd)](https://togithub.com/vitest-dev/vitest/commit/583dd8a98)\n- โš ๏ธ This changes the custom `pool` API - now requires `collectTests`\nmethod alongside `runTests`.\n- Remove the empty suite from the runner - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5435](https://togithub.com/vitest-dev/vitest/issues/5435)\n[(dbbbe)](https://togithub.com/vitest-dev/vitest/commit/dbbbe4304)\n- Support concurrent suites - by\n**[@​hi-ogawa](https://togithub.com/hi-ogawa)** in\n[https://github.com/vitest-dev/vitest/pull/5491](https://togithub.com/vitest-dev/vitest/pull/5491)\n[(222ce44)](https://togithub.com/vitest-dev/vitest/commit/222ce44119bd02bdf0c7546f9db653000616ccfa)\n\n##### ๐Ÿš€ Features\n\n- Pretty print diffs coming from cause - by\n[@​dubzzz](https://togithub.com/dubzzz) in\n[https://github.com/vitest-dev/vitest/issues/5660](https://togithub.com/vitest-dev/vitest/issues/5660)\n[(6faf8)](https://togithub.com/vitest-dev/vitest/commit/6faf8f84b)\n- Allow import statement as vi.mock path for better IDE support - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5690](https://togithub.com/vitest-dev/vitest/issues/5690)\n[(a99a1)](https://togithub.com/vitest-dev/vitest/commit/a99a14c1c)\n- Remove deprecated options - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5696](https://togithub.com/vitest-dev/vitest/issues/5696)\n[(5c308)](https://togithub.com/vitest-dev/vitest/commit/5c308edc6)\n- Add blob reporter - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5663](https://togithub.com/vitest-dev/vitest/issues/5663)\n[(e2053)](https://togithub.com/vitest-dev/vitest/commit/e20538a36)\n- Add expect.poll utility - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5708](https://togithub.com/vitest-dev/vitest/issues/5708)\n[(e2e0f)](https://togithub.com/vitest-dev/vitest/commit/e2e0ff46a)\n- Add browser.ui option - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5771](https://togithub.com/vitest-dev/vitest/issues/5771)\n[(a5033)](https://togithub.com/vitest-dev/vitest/commit/a50330eea)\n- Add median to `--output-json` - by\n[@​Joristdh](https://togithub.com/Joristdh) in\n[https://github.com/vitest-dev/vitest/issues/5745](https://togithub.com/vitest-dev/vitest/issues/5745)\n[(0766b)](https://togithub.com/vitest-dev/vitest/commit/0766b7f72)\n- Allow augmenting config.test.env - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5784](https://togithub.com/vitest-dev/vitest/issues/5784)\n[(b2469)](https://togithub.com/vitest-dev/vitest/commit/b24691efd)\n- Implement module mocking in browser mode - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5765](https://togithub.com/vitest-dev/vitest/issues/5765)\n[(7b2f6)](https://togithub.com/vitest-dev/vitest/commit/7b2f64cfa)\n- Allow configuring expect options in the config - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5729](https://togithub.com/vitest-dev/vitest/issues/5729)\n[(fc53f)](https://togithub.com/vitest-dev/vitest/commit/fc53f5634)\n- Add an option to print console stack trace - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5720](https://togithub.com/vitest-dev/vitest/issues/5720)\n[(e4fe6)](https://togithub.com/vitest-dev/vitest/commit/e4fe6f51a)\n- Add browser frame to UI - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5808](https://togithub.com/vitest-dev/vitest/issues/5808)\n[(3796d)](https://togithub.com/vitest-dev/vitest/commit/3796dd7e0)\n- Image type add bmp - by **btea** in\n[https://github.com/vitest-dev/vitest/issues/5921](https://togithub.com/vitest-dev/vitest/issues/5921)\n[(98f9b)](https://togithub.com/vitest-dev/vitest/commit/98f9b7ab9)\n- Add an option to return base64 from page.screenshot - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5993](https://togithub.com/vitest-dev/vitest/issues/5993)\n[(be323)](https://togithub.com/vitest-dev/vitest/commit/be3231763)\n- Expose `parseAst`, `parseAstAsync` from vite - by\n[@​sheremet-va](https://togithub.com/sheremet-va)\n[(f645e)](https://togithub.com/vitest-dev/vitest/commit/f645e48c5)\n- **browser**:\n- Add commands to communicate betweens server and the browser - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5097](https://togithub.com/vitest-dev/vitest/issues/5097)\n[(aa431)](https://togithub.com/vitest-dev/vitest/commit/aa431f4db)\n- Do not reload the page during watch mode - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5810](https://togithub.com/vitest-dev/vitest/issues/5810)\n[(e5b9a)](https://togithub.com/vitest-dev/vitest/commit/e5b9a0be4)\n- Support changing the viewport - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5811](https://togithub.com/vitest-dev/vitest/issues/5811)\n[(71851)](https://togithub.com/vitest-dev/vitest/commit/718512d80)\n- Add browser iframe mouse interaction - by\n[@​userquin](https://togithub.com/userquin) in\n[https://github.com/vitest-dev/vitest/issues/5815](https://togithub.com/vitest-dev/vitest/issues/5815)\n[(f29b9)](https://togithub.com/vitest-dev/vitest/commit/f29b9d408)\n- Support `click` event - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5777](https://togithub.com/vitest-dev/vitest/issues/5777)\n[(839c3)](https://togithub.com/vitest-dev/vitest/commit/839c39f06)\n- Rename none provider to preview, make it default - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5826](https://togithub.com/vitest-dev/vitest/issues/5826)\n[(18310)](https://togithub.com/vitest-dev/vitest/commit/1831008b1)\n- Run tests in parallel in headless mode, add `page.screenshot` method -\nby [@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5853](https://togithub.com/vitest-dev/vitest/issues/5853)\n[(81c42)](https://togithub.com/vitest-dev/vitest/commit/81c42fc8a)\n- Implement several `userEvent` methods, add `fill` and `dragAndDrop`\nevents - by [@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5882](https://togithub.com/vitest-dev/vitest/issues/5882)\n[(4dbea)](https://togithub.com/vitest-dev/vitest/commit/4dbea4aed)\n- Introduce `expect.dom` method and bundle `jest-dom` matchers with\n`@vitest/browser` - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5910](https://togithub.com/vitest-dev/vitest/issues/5910)\n[(3a96a)](https://togithub.com/vitest-dev/vitest/commit/3a96a3d0e)\n- Expose CDP in the browser - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5938](https://togithub.com/vitest-dev/vitest/issues/5938)\n[(bec43)](https://togithub.com/vitest-dev/vitest/commit/bec434cb6)\n- Add \"init\" command for browser tests - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5960](https://togithub.com/vitest-dev/vitest/issues/5960)\n[(49e97)](https://togithub.com/vitest-dev/vitest/commit/49e973cb9)\n- Add an option to take screenshots if the browser test fails - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5975](https://togithub.com/vitest-dev/vitest/issues/5975)\n[(154cb)](https://togithub.com/vitest-dev/vitest/commit/154cb22de)\n- Add `tripleClick` to interactive api - by\n[@​userquin](https://togithub.com/userquin) in\n[https://github.com/vitest-dev/vitest/issues/5987](https://togithub.com/vitest-dev/vitest/issues/5987)\n[(200a4)](https://togithub.com/vitest-dev/vitest/commit/200a4349a)\n- Playwright provider doesn't allow resizing the browser viewport - by\n[@​userquin](https://togithub.com/userquin) and\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5984](https://togithub.com/vitest-dev/vitest/issues/5984)\n[(ff978)](https://togithub.com/vitest-dev/vitest/commit/ff978e58d)\n- **config**:\n- Allow percentage value for workers option - by\n[@​syi0808](https://togithub.com/syi0808) in\n[https://github.com/vitest-dev/vitest/issues/5982](https://togithub.com/vitest-dev/vitest/issues/5982)\n[(b1a27)](https://togithub.com/vitest-dev/vitest/commit/b1a27d404)\n- **runner**:\n- Implement `test.for` - by\n[@​hi-ogawa](https://togithub.com/hi-ogawa) and\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5861](https://togithub.com/vitest-dev/vitest/issues/5861)\n[(c2380)](https://togithub.com/vitest-dev/vitest/commit/c238072fd)\n- **spy**:\n- Collect mock.contexts - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5955](https://togithub.com/vitest-dev/vitest/issues/5955)\n[(3b31a)](https://togithub.com/vitest-dev/vitest/commit/3b31a56d5)\n- **ui**:\n- Render tests in a tree - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5807](https://togithub.com/vitest-dev/vitest/issues/5807)\n[(7900f)](https://togithub.com/vitest-dev/vitest/commit/7900f9f89)\n- Load module graph on tab selection - by\n[@​userquin](https://togithub.com/userquin) in\n[https://github.com/vitest-dev/vitest/issues/5844](https://togithub.com/vitest-dev/vitest/issues/5844)\n[(b117e)](https://togithub.com/vitest-dev/vitest/commit/b117e8756)\n- Replace navigation tree with test explorer - by\n[@​userquin](https://togithub.com/userquin) in\n[https://github.com/vitest-dev/vitest/issues/5907](https://togithub.com/vitest-dev/vitest/issues/5907)\n[(45dfc)](https://togithub.com/vitest-dev/vitest/commit/45dfc95ae)\n- Add initializing explorer logic - by\n[@​userquin](https://togithub.com/userquin) in\n[https://github.com/vitest-dev/vitest/issues/5941](https://togithub.com/vitest-dev/vitest/issues/5941)\n[(c31c4)](https://togithub.com/vitest-dev/vitest/commit/c31c41c72)\n- Add action to explorer item to show the test/suite line in the source\ncode tab - by [@​userquin](https://togithub.com/userquin) and\n**Anjorin Damilare** in\n[https://github.com/vitest-dev/vitest/issues/5948](https://togithub.com/vitest-dev/vitest/issues/5948)\n[(7ec29)](https://togithub.com/vitest-dev/vitest/commit/7ec298eb3)\n- **ws-client**:\n- Allow change reactive for state, filesMap and idMap - by\n[@​userquin](https://togithub.com/userquin) in\n[https://github.com/vitest-dev/vitest/issues/5906](https://togithub.com/vitest-dev/vitest/issues/5906)\n[(e6020)](https://togithub.com/vitest-dev/vitest/commit/e6020b9c2)\n\n##### ๐Ÿž Bug Fixes\n\n- Print console statements in vmThreads - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5678](https://togithub.com/vitest-dev/vitest/issues/5678)\n[(34a80)](https://togithub.com/vitest-dev/vitest/commit/34a80b392)\n- Repeatable `--exclude` option - by\n[@​fregante](https://togithub.com/fregante) in\n[https://github.com/vitest-dev/vitest/issues/5782](https://togithub.com/vitest-dev/vitest/issues/5782)\n[(d6700)](https://togithub.com/vitest-dev/vitest/commit/d6700bbd8)\n- Remove browser.fileParallelism - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5790](https://togithub.com/vitest-dev/vitest/issues/5790)\n[(b881e)](https://togithub.com/vitest-dev/vitest/commit/b881e88b2)\n- Install UI icons - by\n[@​sheremet-va](https://togithub.com/sheremet-va)\n[(b84f1)](https://togithub.com/vitest-dev/vitest/commit/b84f1721d)\n- Remove process.exit if workspace project failed to be created - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5804](https://togithub.com/vitest-dev/vitest/issues/5804)\n[(a820e)](https://togithub.com/vitest-dev/vitest/commit/a820e7ac6)\n- Vi.waitFor/vi.waitUntil interval is now cleared after it times out -\nby [@​pedro00dk](https://togithub.com/pedro00dk) in\n[https://github.com/vitest-dev/vitest/issues/5875](https://togithub.com/vitest-dev/vitest/issues/5875)\n[(04107)](https://togithub.com/vitest-dev/vitest/commit/041076e7c)\n- ToJSON recursive error serialization - by\n[@​eddienubes](https://togithub.com/eddienubes) in\n[https://github.com/vitest-dev/vitest/issues/5848](https://togithub.com/vitest-dev/vitest/issues/5848)\nand\n[https://github.com/vitest-dev/vitest/issues/5884](https://togithub.com/vitest-dev/vitest/issues/5884)\n[(8d55d)](https://togithub.com/vitest-dev/vitest/commit/8d55d6bd4)\n- Print error properties only in verbose reporter - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5917](https://togithub.com/vitest-dev/vitest/issues/5917)\n[(2bd8d)](https://togithub.com/vitest-dev/vitest/commit/2bd8d9d6f)\n- Use TTY reporter when running in Deno - by\n[@​marvinhagemeister](https://togithub.com/marvinhagemeister) in\n[https://github.com/vitest-dev/vitest/issues/5972](https://togithub.com/vitest-dev/vitest/issues/5972)\n[(e0f45)](https://togithub.com/vitest-dev/vitest/commit/e0f45cb57)\n- Don't override uppercase - by\n[@​sheremet-va](https://togithub.com/sheremet-va)\n[(caef4)](https://togithub.com/vitest-dev/vitest/commit/caef40a0b)\n- Clear screen and scrollback on iTerm2 - by\n[@​kxalex](https://togithub.com/kxalex) in\n[https://github.com/vitest-dev/vitest/issues/5978](https://togithub.com/vitest-dev/vitest/issues/5978)\n[(d7f23)](https://togithub.com/vitest-dev/vitest/commit/d7f23d08c)\n- Include pretty-format in\n[@​vitest/runner](https://togithub.com/vitest/runner) for\noptimization on npm - by\n[@​sheremet-va](https://togithub.com/sheremet-va)\n[(42bd4)](https://togithub.com/vitest-dev/vitest/commit/42bd4a259)\n- Transpile esnext to node18 to support newest JS and TS features - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/4409](https://togithub.com/vitest-dev/vitest/issues/4409)\n[(8f65a)](https://togithub.com/vitest-dev/vitest/commit/8f65ae906)\n- **api**:\n- Correct `project.provide` type - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5959](https://togithub.com/vitest-dev/vitest/issues/5959)\n[(0eda9)](https://togithub.com/vitest-dev/vitest/commit/0eda99de9)\n- Don't call process.exit manually - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5926](https://togithub.com/vitest-dev/vitest/issues/5926)\n[(e9b63)](https://togithub.com/vitest-dev/vitest/commit/e9b638d40)\n- **browser**:\n- Display UI - by\n[@​sheremet-va](https://togithub.com/sheremet-va)\n[(d41e4)](https://togithub.com/vitest-dev/vitest/commit/d41e46a81)\n- Browser actions icons colors - by\n[@​userquin](https://togithub.com/userquin) in\n[https://github.com/vitest-dev/vitest/issues/5816](https://togithub.com/vitest-dev/vitest/issues/5816)\n[(f9d9b)](https://togithub.com/vitest-dev/vitest/commit/f9d9b3bef)\n- Restore the original viewport when unselecting the preset viewport -\nby [@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5821](https://togithub.com/vitest-dev/vitest/issues/5821)\n[(5ebb3)](https://togithub.com/vitest-dev/vitest/commit/5ebb3abf5)\n- Don't get stuck after the manual page refresh - by\n[@​sheremet-va](https://togithub.com/sheremet-va)\n[(2220b)](https://togithub.com/vitest-dev/vitest/commit/2220bb3fe)\n- Use iframe id instead of calculating it from filenames - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5823](https://togithub.com/vitest-dev/vitest/issues/5823)\n[(34a31)](https://togithub.com/vitest-dev/vitest/commit/34a310da1)\n- Always clean up iframes on rerun - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5827](https://togithub.com/vitest-dev/vitest/issues/5827)\n[(087fa)](https://togithub.com/vitest-dev/vitest/commit/087fa87c3)\n- Support\n[@​testing-library/vue](https://togithub.com/testing-library/vue)\nin browser mode out of the box - by\n[@​sheremet-va](https://togithub.com/sheremet-va)\n[(76b82)](https://togithub.com/vitest-dev/vitest/commit/76b82e5b9)\n- Print correct transformed module graph - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5833](https://togithub.com/vitest-dev/vitest/issues/5833)\n[(a7581)](https://togithub.com/vitest-dev/vitest/commit/a75815756)\n- Use `preview` provider when running in StackBlitz - by\n[@​userquin](https://togithub.com/userquin) in\n[https://github.com/vitest-dev/vitest/issues/5836](https://togithub.com/vitest-dev/vitest/issues/5836)\n[(76e13)](https://togithub.com/vitest-dev/vitest/commit/76e13587c)\n- Specify entries for correct deps optimization - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5839](https://togithub.com/vitest-dev/vitest/issues/5839)\n[(c79b3)](https://togithub.com/vitest-dev/vitest/commit/c79b3f1f9)\n- Allow iframe to load even if there is a custom CSP header - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5841](https://togithub.com/vitest-dev/vitest/issues/5841)\n[(caaaf)](https://togithub.com/vitest-dev/vitest/commit/caaafd903)\n- Don't optimize Vitest dependencies - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5843](https://togithub.com/vitest-dev/vitest/issues/5843)\n[(f15b4)](https://togithub.com/vitest-dev/vitest/commit/f15b4e99d)\n- Set server.open to false and move error handling after init - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5845](https://togithub.com/vitest-dev/vitest/issues/5845)\n[(47003)](https://togithub.com/vitest-dev/vitest/commit/470036794)\n- Show correct prepare time - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5852](https://togithub.com/vitest-dev/vitest/issues/5852)\n[(52d54)](https://togithub.com/vitest-dev/vitest/commit/52d545bf9)\n- Resolve `coverage.reporter` from string values - by\n[@​AriPerkkio](https://togithub.com/AriPerkkio) in\n[https://github.com/vitest-dev/vitest/issues/5920](https://togithub.com/vitest-dev/vitest/issues/5920)\n[(f33da)](https://togithub.com/vitest-dev/vitest/commit/f33dabbef)\n- Correctly update inline snapshot if changed - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5925](https://togithub.com/vitest-dev/vitest/issues/5925)\n[(2380c)](https://togithub.com/vitest-dev/vitest/commit/2380cb95e)\n- Remove \"util\" warning - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5935](https://togithub.com/vitest-dev/vitest/issues/5935)\n[(48f28)](https://togithub.com/vitest-dev/vitest/commit/48f28f731)\n- Remove hacky retry - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5971](https://togithub.com/vitest-dev/vitest/issues/5971)\n[(2a2c9)](https://togithub.com/vitest-dev/vitest/commit/2a2c9085a)\n- Make userEvent more stable when running in parallel - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5974](https://togithub.com/vitest-dev/vitest/issues/5974)\n[(14a21)](https://togithub.com/vitest-dev/vitest/commit/14a217d53)\n- Print screenshot path alongside the test error message - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5992](https://togithub.com/vitest-dev/vitest/issues/5992)\n[(15289)](https://togithub.com/vitest-dev/vitest/commit/152891b3d)\n- Print correct stack trace in source files - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/6003](https://togithub.com/vitest-dev/vitest/issues/6003)\n[(62aa7)](https://togithub.com/vitest-dev/vitest/commit/62aa72081)\n- Correctly mock optimized cjs dependencies - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/6035](https://togithub.com/vitest-dev/vitest/issues/6035)\n[(057b4)](https://togithub.com/vitest-dev/vitest/commit/057b4f34b)\n- Support shadow root and svg elements - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/6036](https://togithub.com/vitest-dev/vitest/issues/6036)\n[(2e3c8)](https://togithub.com/vitest-dev/vitest/commit/2e3c872ae)\n- **coverage**:\n- Clean up empty coverage reports directory - by\n[@​AriPerkkio](https://togithub.com/AriPerkkio) in\n[https://github.com/vitest-dev/vitest/issues/5731](https://togithub.com/vitest-dev/vitest/issues/5731)\n[(c469c)](https://togithub.com/vitest-dev/vitest/commit/c469c74d7)\n- `thresholds.autoUpdate` to support `mergeConfig` - by\n[@​AriPerkkio](https://togithub.com/AriPerkkio) in\n[https://github.com/vitest-dev/vitest/issues/5818](https://togithub.com/vitest-dev/vitest/issues/5818)\n[(7afb3)](https://togithub.com/vitest-dev/vitest/commit/7afb3682f)\n- Pass thresholds errors to `stderr` of `startVitest()` - by\n[@​AriPerkkio](https://togithub.com/AriPerkkio) in\n[https://github.com/vitest-dev/vitest/issues/5954](https://togithub.com/vitest-dev/vitest/issues/5954)\n[(70805)](https://togithub.com/vitest-dev/vitest/commit/708051319)\n- Exclude bench files from coverage - by\n[@​kouak](https://togithub.com/kouak) in\n[https://github.com/vitest-dev/vitest/issues/5983](https://togithub.com/vitest-dev/vitest/issues/5983)\n[(429e1)](https://togithub.com/vitest-dev/vitest/commit/429e1a7f8)\n- Vite to ignore dynamic import of provider - by\n[@​AriPerkkio](https://togithub.com/AriPerkkio) in\n[https://github.com/vitest-dev/vitest/issues/5998](https://togithub.com/vitest-dev/vitest/issues/5998)\n[(6d884)](https://togithub.com/vitest-dev/vitest/commit/6d8848e86)\n- Istanbul to support import attributes - by\n[@​Gravitonic](https://togithub.com/Gravitonic) in\n[https://github.com/vitest-dev/vitest/issues/6006](https://togithub.com/vitest-dev/vitest/issues/6006)\n[(2898a)](https://togithub.com/vitest-dev/vitest/commit/2898a525d)\n- Support overriding `exclude` - by\n[@​AriPerkkio](https://togithub.com/AriPerkkio) in\n[https://github.com/vitest-dev/vitest/issues/5997](https://togithub.com/vitest-dev/vitest/issues/5997)\n[(169bc)](https://togithub.com/vitest-dev/vitest/commit/169bc1fde)\n- Remove work-around for implicit `else` - by\n[@​AriPerkkio](https://togithub.com/AriPerkkio) in\n[https://github.com/vitest-dev/vitest/issues/6014](https://togithub.com/vitest-dev/vitest/issues/6014)\n[(368c1)](https://togithub.com/vitest-dev/vitest/commit/368c13728)\n- **deps**:\n- Update dependency\n[@​testing-library/dom](https://togithub.com/testing-library/dom)\nto v10 - by **renovate\\[bot]** in\n[https://github.com/vitest-dev/vitest/issues/5866](https://togithub.com/vitest-dev/vitest/issues/5866)\n[(e9745)](https://togithub.com/vitest-dev/vitest/commit/e9745997e)\n- Update vulnerable `test-exclude` to v7 - by\n[@​AriPerkkio](https://togithub.com/AriPerkkio) in\n[https://github.com/vitest-dev/vitest/issues/5867](https://togithub.com/vitest-dev/vitest/issues/5867)\n[(0a715)](https://togithub.com/vitest-dev/vitest/commit/0a715946b)\n- **expect**:\n- Fix immutable.js iterable equality - by\n[@​hi-ogawa](https://togithub.com/hi-ogawa) in\n[https://github.com/vitest-dev/vitest/issues/5692](https://togithub.com/vitest-dev/vitest/issues/5692)\n[(1532c)](https://togithub.com/vitest-dev/vitest/commit/1532c19a0)\n- **forks**:\n- Resolve `poolOptions..isolate` from `forks` options - by\n[@​AriPerkkio](https://togithub.com/AriPerkkio) in\n[https://github.com/vitest-dev/vitest/issues/5840](https://togithub.com/vitest-dev/vitest/issues/5840)\n[(a60a1)](https://togithub.com/vitest-dev/vitest/commit/a60a140ef)\n- **runner**:\n- Ensure inner suite { sequential: true } correctly overrides outer\nsuite { concurrent: true } - by\n[@​pengooseDev](https://togithub.com/pengooseDev) in\n[https://github.com/vitest-dev/vitest/issues/5737](https://togithub.com/vitest-dev/vitest/issues/5737)\n[(a20e7)](https://togithub.com/vitest-dev/vitest/commit/a20e75b89)\n- Ensure test.each print -0 and -NaN properly - by\n[@​pengooseDev](https://togithub.com/pengooseDev) in\n[https://github.com/vitest-dev/vitest/issues/5806](https://togithub.com/vitest-dev/vitest/issues/5806)\n[(9ac8f)](https://togithub.com/vitest-dev/vitest/commit/9ac8ff9bd)\n- **snapshot**:\n- Fix `toMatchFileSnapshot` with empty file - by\n[@​hi-ogawa](https://togithub.com/hi-ogawa) in\n[https://github.com/vitest-dev/vitest/issues/5894](https://togithub.com/vitest-dev/vitest/issues/5894)\n[(88006)](https://togithub.com/vitest-dev/vitest/commit/8800601d2)\n- **spy**:\n- Correctly track constructor's \"this\" type - by\n[@​sheremet-va](https://togithub.com/sheremet-va)\n[(4776e)](https://togithub.com/vitest-dev/vitest/commit/4776eca1d)\n- **types**:\n- Mark pool options as not available in project config - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5934](https://togithub.com/vitest-dev/vitest/issues/5934)\n[(486fd)](https://togithub.com/vitest-dev/vitest/commit/486fd1169)\n- **ui**:\n- Show correct module graph and project name in a Vitest workspace - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5792](https://togithub.com/vitest-dev/vitest/issues/5792)\n[(48c50)](https://togithub.com/vitest-dev/vitest/commit/48c502fbe)\n- Update running todo tests inside todo suites (each) - by\n[@​userquin](https://togithub.com/userquin) in\n[https://github.com/vitest-dev/vitest/issues/5939](https://togithub.com/vitest-dev/vitest/issues/5939)\n[(63ae1)](https://togithub.com/vitest-dev/vitest/commit/63ae10bd9)\n- `FileDetails` title status icon not being updated - by\n[@​userquin](https://togithub.com/userquin) in\n[https://github.com/vitest-dev/vitest/issues/5942](https://togithub.com/vitest-dev/vitest/issues/5942)\n[(e9ddf)](https://togithub.com/vitest-dev/vitest/commit/e9ddf9ce2)\n- **ui, browser**:\n- Disable mouse events when resizing main navigation panel - by\n[@​userquin](https://togithub.com/userquin) in\n[https://github.com/vitest-dev/vitest/issues/5863](https://togithub.com/vitest-dev/vitest/issues/5863)\n[(7cbd9)](https://togithub.com/vitest-dev/vitest/commit/7cbd943c7)\n- **utils**:\n- Produce valid snapshot names - by\n[@​dubzzz](https://togithub.com/dubzzz) in\n[https://github.com/vitest-dev/vitest/issues/5724](https://togithub.com/vitest-dev/vitest/issues/5724)\n[(1ec61)](https://togithub.com/vitest-dev/vitest/commit/1ec61ceee)\n- Fix color util maximum call stack error - by\n[@​hi-ogawa](https://togithub.com/hi-ogawa) in\n[https://github.com/vitest-dev/vitest/issues/5733](https://togithub.com/vitest-dev/vitest/issues/5733)\n[(a4ec5)](https://togithub.com/vitest-dev/vitest/commit/a4ec58319)\n- Package exports - by [@​userquin](https://togithub.com/userquin)\nin\n[https://github.com/vitest-dev/vitest/issues/5847](https://togithub.com/vitest-dev/vitest/issues/5847)\n[(07876)](https://togithub.com/vitest-dev/vitest/commit/07876b7e0)\n- **vite-node**:\n- Expose all envs from .env file, not just with a prefix `VITE_` - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/6017](https://togithub.com/vitest-dev/vitest/issues/6017)\n[(d87be)](https://togithub.com/vitest-dev/vitest/commit/d87bef961)\n- **vitest**:\n- Expose `provide` to the public API - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5897](https://togithub.com/vitest-dev/vitest/issues/5897)\n[(66e64)](https://togithub.com/vitest-dev/vitest/commit/66e648ff8)\n- Cache fs code only for forks pool - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/5909](https://togithub.com/vitest-dev/vitest/issues/5909)\n[(e30d9)](https://togithub.com/vitest-dev/vitest/commit/e30d9b4d5)\n- Allow testing unandled rejection/exception - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/6016](https://togithub.com/vitest-dev/vitest/issues/6016)\n[(c8d56)](https://togithub.com/vitest-dev/vitest/commit/c8d56fe5f)\n- Show all failed tests when rerunning a test - by\n[@​sheremet-va](https://togithub.com/sheremet-va) in\n[https://github.com/vitest-dev/vitest/issues/6022](https://togithub.com/vitest-dev/vitest/issues/6022)\n[(91ba6)](https://togithub.com/vitest-dev/vitest/commit/91ba6f95e)\n\n##### [View changes on\nGitHub](https://togithub.com/vitest-dev/vitest/compare/6b29f3ddc86060cf3265959d4ae32e90b186cb92...v2.0.0)\n\n
\n\n---\n\n### Configuration\n\n๐Ÿ“… **Schedule**: Branch creation - At any time (no schedule defined),\nAutomerge - At any time (no schedule defined).\n\n๐Ÿšฆ **Automerge**: Enabled.\n\nโ™ป **Rebasing**: Whenever PR becomes conflicted, or you tick the\nrebase/retry checkbox.\n\n๐Ÿ”• **Ignore**: Close this PR and you won't be reminded about these\nupdates again.\n\n---\n\n- [ ] If you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has been generated by [Mend\nRenovate](https://www.mend.io/free-developer-tools/renovate/). View\nrepository job log\n[here](https://developer.mend.io/github/line/line-bot-sdk-nodejs).\n\n\n\nCo-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Update vitest monorepo to v2 (major) (#898)"}},{"before":null,"after":"d8cda127c6f1d243ebb9a0ffada12445c387e9ab","ref":"refs/heads/renovate/major-vitest-monorepo","pushedAt":"2024-07-08T12:05:24.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update vitest monorepo to v2","shortMessageHtmlLink":"Update vitest monorepo to v2"}},{"before":null,"after":"2c043058f9a82c27d7dbe107cc6275f2625a4696","ref":"refs/heads/renovate/vitepress-1.x-lockfile","pushedAt":"2024-07-07T17:13:13.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update dependency vitepress to v1.3.0","shortMessageHtmlLink":"Update dependency vitepress to v1.3.0"}},{"before":"4e5d246728b148c93188b38a08caf75df8264f54","after":null,"ref":"refs/heads/renovate/node-20.x-lockfile","pushedAt":"2024-07-06T01:15:32.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"}},{"before":"b7f57c665dbf7a78e10dd695f283f47dc9cfbca0","after":"00afb9e13e359467f8a7ffa222b2974935b79bc0","ref":"refs/heads/master","pushedAt":"2024-07-05T21:41:29.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update dependency @types/node to v20.14.10 (#896)\n\n[![Mend\nRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)\n\nThis PR contains the following updates:\n\n| Package | Change | Age | Adoption | Passing | Confidence |\n|---|---|---|---|---|---|\n|\n[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)\n([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node))\n| [`20.14.9` ->\n`20.14.10`](https://renovatebot.com/diffs/npm/@types%2fnode/20.14.9/20.14.10)\n|\n[![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.14.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.14.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.14.9/20.14.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.14.9/20.14.10?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n\n---\n\n### Configuration\n\n๐Ÿ“… **Schedule**: Branch creation - At any time (no schedule defined),\nAutomerge - At any time (no schedule defined).\n\n๐Ÿšฆ **Automerge**: Enabled.\n\nโ™ป **Rebasing**: Whenever PR becomes conflicted, or you tick the\nrebase/retry checkbox.\n\n๐Ÿ”• **Ignore**: Close this PR and you won't be reminded about this update\nagain.\n\n---\n\n- [ ] If you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has been generated by [Mend\nRenovate](https://www.mend.io/free-developer-tools/renovate/). View\nrepository job log\n[here](https://developer.mend.io/github/line/line-bot-sdk-nodejs).\n\n\n\nCo-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Update dependency @types/node to v20.14.10 (#896)"}},{"before":null,"after":"4e5d246728b148c93188b38a08caf75df8264f54","ref":"refs/heads/renovate/node-20.x-lockfile","pushedAt":"2024-07-05T21:38:48.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update dependency @types/node to v20.14.10","shortMessageHtmlLink":"Update dependency @types/node to v20.14.10"}},{"before":"ed3d5501ab1c7e62b2aca80f1a752eea88cd2363","after":null,"ref":"refs/heads/renovate/openapi-generator-version","pushedAt":"2024-07-02T14:11:53.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"}},{"before":"e304fd3e4aa57451cbc9a574074ba9bd9796103f","after":"b7f57c665dbf7a78e10dd695f283f47dc9cfbca0","ref":"refs/heads/master","pushedAt":"2024-07-02T09:54:19.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update openapi-generator-version to v7.7.0 (#895)\n\n[![Mend\nRenovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)\n\nThis PR contains the following updates:\n\n| Package | Change | Age | Adoption | Passing | Confidence |\n|---|---|---|---|---|---|\n|\n[org.openapitools:openapi-generator-cli](https://togithub.com/openapitools/openapi-generator)\n| `7.6.0` -> `7.7.0` |\n[![age](https://developer.mend.io/api/mc/badges/age/maven/org.openapitools:openapi-generator-cli/7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/org.openapitools:openapi-generator-cli/7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/org.openapitools:openapi-generator-cli/7.6.0/7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.openapitools:openapi-generator-cli/7.6.0/7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n|\n[org.openapitools:openapi-generator](https://togithub.com/openapitools/openapi-generator)\n| `7.6.0` -> `7.7.0` |\n[![age](https://developer.mend.io/api/mc/badges/age/maven/org.openapitools:openapi-generator/7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![adoption](https://developer.mend.io/api/mc/badges/adoption/maven/org.openapitools:openapi-generator/7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![passing](https://developer.mend.io/api/mc/badges/compatibility/maven/org.openapitools:openapi-generator/7.6.0/7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n[![confidence](https://developer.mend.io/api/mc/badges/confidence/maven/org.openapitools:openapi-generator/7.6.0/7.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)\n|\n\n---\n\n### Release Notes\n\n
\nopenapitools/openapi-generator\n(org.openapitools:openapi-generator-cli)\n\n###\n[`v7.7.0`](https://togithub.com/OpenAPITools/openapi-generator/releases/tag/v7.7.0):\nreleased\n\nv7.7.0 stable release comes with 140+ enhancements, bug fixes. Once\nagain thank you for all the awesome contributions from the community.\n\nFor a full list of changes, please refer to the [\"Pull\nRequest\"](https://togithub.com/OpenAPITools/openapi-generator/pulls?q=is%3Amerged+is%3Apr+milestone%3A7.7.0+)\ntab.\n\n
\n\n---\n\n### Configuration\n\n๐Ÿ“… **Schedule**: Branch creation - At any time (no schedule defined),\nAutomerge - At any time (no schedule defined).\n\n๐Ÿšฆ **Automerge**: Enabled.\n\nโ™ป **Rebasing**: Whenever PR becomes conflicted, or you tick the\nrebase/retry checkbox.\n\n๐Ÿ”• **Ignore**: Close this PR and you won't be reminded about these\nupdates again.\n\n---\n\n- [ ] If you want to rebase/retry this PR, check\nthis box\n\n---\n\nThis PR has been generated by [Mend\nRenovate](https://www.mend.io/free-developer-tools/renovate/). View\nrepository job log\n[here](https://developer.mend.io/github/line/line-bot-sdk-nodejs).\n\n\n\nCo-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Update openapi-generator-version to v7.7.0 (#895)"}},{"before":null,"after":"ed3d5501ab1c7e62b2aca80f1a752eea88cd2363","ref":"refs/heads/renovate/openapi-generator-version","pushedAt":"2024-07-02T09:51:41.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"renovate[bot]","name":null,"path":"/apps/renovate","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/2740?s=80&v=4"},"commit":{"message":"Update openapi-generator-version to v7.7.0","shortMessageHtmlLink":"Update openapi-generator-version to v7.7.0"}},{"before":"4e2fd5432e511157c4587c8e385f3852b9272e36","after":null,"ref":"refs/heads/renovate/typescript-5.x","pushedAt":"2024-07-02T00:40:25.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"Yang-33","name":"Yuta Kasai","path":"/Yang-33","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24933664?s=80&v=4"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEfvAi2gA","startCursor":null,"endCursor":null}},"title":"Activity ยท line/line-bot-sdk-nodejs"}