{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":566850397,"defaultBranch":"main","name":"suspensive","ownerLogin":"toss","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2022-11-16T14:53:28.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/25682207?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1718968669.0","currentOid":""},"activityList":{"items":[{"before":"f47b2972bd5221afed1cd316a67033c38279f2bf","after":null,"ref":"refs/heads/changeset-release/beta","pushedAt":"2024-06-21T11:16:49.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"}},{"before":"8d8a2d6cd8f2469ed547e00e9634ac212ed68bbe","after":"3e6db9dc0cff877026243f00522090acb008aea1","ref":"refs/heads/beta","pushedAt":"2024-06-21T11:16:49.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"chore: version packages (beta) (#954)\n\nThis PR was opened by the [Changesets\r\nrelease](https://github.com/changesets/action) GitHub action. When\r\nyou're ready to do a release, you can merge this and the packages will\r\nbe published to npm automatically. If you're not ready to do a release\r\nyet, that's fine, whenever you add more changesets to beta, this PR will\r\nbe updated.\r\n\r\n⚠️⚠️⚠️⚠️⚠️⚠️\r\n\r\n`beta` is currently in **pre mode** so this branch has prereleases\r\nrather than normal releases. If you want to exit prereleases, run\r\n`changeset pre exit` on `beta`.\r\n\r\n⚠️⚠️⚠️⚠️⚠️⚠️\r\n\r\n# Releases\r\n## @suspensive/react-query@2.1.2-beta.1\r\n\r\n### Patch Changes\r\n\r\n- [#953](https://github.com/toss/suspensive/pull/953)\r\n[`8d8a2d6`](https://github.com/toss/suspensive/commit/8d8a2d6cd8f2469ed547e00e9634ac212ed68bbe)\r\nThanks [@gwansikk](https://github.com/gwansikk)! - feat(react-query):\r\nuniversal support for TanStack Query 4 and 5\r\n\r\n- Updated dependencies \\[]:\r\n - @suspensive/react@2.1.2-beta.1\r\n - @suspensive/react-query-4@0.0.1-beta.0\r\n - @suspensive/react-query-5@0.0.1-beta.0\r\n\r\n## @suspensive/react@2.1.2-beta.1\r\n\r\nCo-authored-by: github-actions[bot] ","shortMessageHtmlLink":"chore: version packages (beta) (#954)"}},{"before":null,"after":"f47b2972bd5221afed1cd316a67033c38279f2bf","ref":"refs/heads/changeset-release/beta","pushedAt":"2024-06-21T11:14:38.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore: version packages (beta)","shortMessageHtmlLink":"chore: version packages (beta)"}},{"before":"53c0056bbff7342be9aed690caee974a6cb3aa81","after":null,"ref":"refs/heads/react-query/feat/universal","pushedAt":"2024-06-21T11:13:57.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"}},{"before":"0ce2c79c281bf65d4b43b515248a1846082a98fe","after":"8d8a2d6cd8f2469ed547e00e9634ac212ed68bbe","ref":"refs/heads/beta","pushedAt":"2024-06-21T11:13:57.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"feat(react-query): universal react-query for suspensive 4 and 5 (#953)\n\n# Summary\r\n\r\n`@suspensive/react-query` now automatically identifies the installed\r\nversion of `@tanstack/react-query` and uses either\r\n`@suspensive/react-query-4` or `@suspensive/react-query-5` accordingly.\r\n\r\n# Roadmaps\r\n\r\n> This is the list of remaining tasks. It may be added to or revised.\r\n\r\n- [x] Core \r\n- [x] Field Test\r\n- [ ] CLI ⚠️\r\n- [ ] Dependency Log\r\n([comment](https://github.com/toss/suspensive/pull/953#issuecomment-2181017079))\r\n\r\n# How it works\r\n\r\nThe mechanism for identifying the version of `@tanstack/react-query` and\r\nselecting the appropriate `@suspensive/react-query-x` to use is similar\r\nto `vue-demi`.\r\n\r\n- https://github.com/vueuse/vue-demi\r\n\r\nWhen `@suspsensive/react-query` is added as a dependency, the\r\n`postinstall` script fetches the version of `@tanstack/react-query` and\r\noverlays the build files of `@suspensive/react-query-x` at the entry\r\npoint (build root) to ensure the appropriate version is used.\r\n\r\n```json\r\n// package.json\r\n// ...\r\n\"exports\": {\r\n \".\": {\r\n \"import\": {\r\n \"types\": \"./dist/index.d.ts\",\r\n \"default\": \"./dist/index.js\"\r\n },\r\n \"require\": {\r\n \"types\": \"./dist/index.d.cts\",\r\n \"default\": \"./dist/index.cjs\"\r\n }\r\n },\r\n \"./package.json\": \"./package.json\"\r\n},\r\n// ...\r\n\"postinstall\": \"node -e \\\"import('./scripts/postinstall.js').catch(e => console.error(e))\\\"\"\r\n// ...\r\n```\r\n\r\nThe `postinstall.js` script is executed during the `postinstall`\r\nprocess.\r\n\r\n```jsx\r\n// script/postinstall.js\r\nimport { loadModule, switchVersion } from './utils.js'\r\n\r\nconst reactQueryPackageJson = loadModule('@tanstack/react-query/package.json')\r\nconst version = reactQueryPackageJson?.version\r\n\r\nif (!version || typeof version !== 'string') {\r\n console.warn('@tanstack/react-query is not found.')\r\n} else if (version.startsWith('4.')) {\r\n switchVersion(4)\r\n} else if (version.startsWith('5.')) {\r\n switchVersion(5)\r\n} else {\r\n console.warn('[@suspensive/react-query]', `version v${version} is not supported.`)\r\n}\r\n```\r\n\r\nThis script fetches the installed `@tanstack/react-query/package.json`,\r\nchecks the version, and copies the corresponding\r\n`@suspensive/react-query-x` files to the library's root.\r\n\r\n```bash\r\nsuspensive/packages/react-query/dist\r\n# --- Library entry point\r\n├── index.cjs\r\n├── index.cjs.map\r\n├── index.d.cts\r\n├── index.d.ts\r\n├── index.js\r\n├── index.js.map\r\n# ---\r\n├── v4\r\n# --- Copy files from this folder to the entry point if @tanstack/react-query@4 is detected\r\n| ├── index.cjs\r\n| ├── index.cjs.map\r\n| ├── index.d.cts\r\n| ├── index.d.ts\r\n| ├── index.js\r\n| └── index.js.map\r\n# ---\r\n└── v5\r\n# --- Copy files from this folder to the entry point if @tanstack/react-query@5 is detected\r\n ├── index.cjs\r\n ├── index.cjs.map\r\n ├── index.d.cts\r\n ├── index.d.ts\r\n ├── index.js\r\n └── index.js.map\r\n```\r\n\r\nBy following this process, `@suspensive/react-query` automatically uses\r\nthe appropriate version upon installation.\r\n\r\nWhen added as a dependency, the version switching happens automatically\r\nas shown in the logs below:\r\n\r\n```bash\r\n# case1: @tanstack/react-query@4\r\npackages/react-query postinstall$ node -e \"import('./scripts/postinstall.js').catch(e => console.error(e))\"\r\n│ [@suspensive/react-query] set version to v4\r\n└─ Done in 56ms\r\n\r\n# case2: @tanstack/react-query@5\r\npackages/react-query postinstall$ node -e \"import('./scripts/postinstall.js').catch(e => console.error(e))\"\r\n│ [@suspensive/react-query] set version to v5\r\n└─ Done in 56ms\r\n```\r\n\r\n# Field Test\r\n\r\n> These tests were conducted in isolated environments using `~.tgz`.\r\nIn all environments, `@suspensive/react\": \"^2.1.2-beta.0` was used\r\nconsistently, and versions 4 and 5 of `@tanstack/react-query` were\r\ntested.\r\n> \r\n- pnpm@9.4.0 ✅\r\n- yarn@v1.22.22 ✅\r\n- yarn berry@4.3.0 (pnp) ✅\r\n- pnpm@9.4.9 (monorepo) ✅\r\n\r\n# CLI\r\n\r\nIn typical environments (single repo), the version switches\r\nautomatically. However, for special cases, we have created the\r\n`suspensive-react-query-switch` script, which forces the switching of\r\n`@suspensive/react-query-x`.\r\n\r\n```bash\r\nnpx suspensive-react-query-switch\r\n[@suspensive/react-query], expecting version \"4\" or \"5\"\"\r\n\r\nnpx suspensive-react-query-switch 4\r\n[@suspensive/react-query] set version to v4\r\n```\r\n\r\nAlthough it works in most environments, it does not work in the\r\nfollowing case:\r\n\r\n- The CLI does not work properly in a monorepo environment. ⚠️\r\n- The CLI does not work properly in a yarn-berry (pnp) environment. ⚠️\r\n\r\n---------\r\n\r\nCo-authored-by: Jonghyeon Ko ","shortMessageHtmlLink":"feat(react-query): universal react-query for suspensive 4 and 5 (#953)"}},{"before":"7692952023d3e1cf8dc6b3d2b760b54d59b8e2e0","after":"53c0056bbff7342be9aed690caee974a6cb3aa81","ref":"refs/heads/react-query/feat/universal","pushedAt":"2024-06-21T07:23:20.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"Create fair-mayflies-knock.md","shortMessageHtmlLink":"Create fair-mayflies-knock.md"}},{"before":"0ce2c79c281bf65d4b43b515248a1846082a98fe","after":"7692952023d3e1cf8dc6b3d2b760b54d59b8e2e0","ref":"refs/heads/react-query/feat/universal","pushedAt":"2024-06-20T13:53:42.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gwansikk","name":"GwanSik Kim","path":"/gwansikk","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/39869096?s=80&v=4"},"commit":{"message":"feat(react-query): universal react-query for suspensive 4 and 5","shortMessageHtmlLink":"feat(react-query): universal react-query for suspensive 4 and 5"}},{"before":"83c0b5756bb6922e076c573fb0040bbea0b99a6a","after":null,"ref":"refs/heads/react-query/feat/demi","pushedAt":"2024-06-20T13:16:08.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gwansikk","name":"GwanSik Kim","path":"/gwansikk","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/39869096?s=80&v=4"}},{"before":null,"after":"0ce2c79c281bf65d4b43b515248a1846082a98fe","ref":"refs/heads/react-query/feat/universal","pushedAt":"2024-06-20T09:49:00.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gwansikk","name":"GwanSik Kim","path":"/gwansikk","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/39869096?s=80&v=4"},"commit":{"message":"chore: version packages (beta) (#951)\n\nThis PR was opened by the [Changesets\r\nrelease](https://github.com/changesets/action) GitHub action. When\r\nyou're ready to do a release, you can merge this and the packages will\r\nbe published to npm automatically. If you're not ready to do a release\r\nyet, that's fine, whenever you add more changesets to beta, this PR will\r\nbe updated.\r\n\r\n⚠️⚠️⚠️⚠️⚠️⚠️\r\n\r\n`beta` is currently in **pre mode** so this branch has prereleases\r\nrather than normal releases. If you want to exit prereleases, run\r\n`changeset pre exit` on `beta`.\r\n\r\n⚠️⚠️⚠️⚠️⚠️⚠️\r\n\r\n# Releases\r\n## @suspensive/react-query@2.1.2-beta.0\r\n\r\n### Patch Changes\r\n\r\n- [#946](https://github.com/toss/suspensive/pull/946)\r\n[`2fd8108`](https://github.com/toss/suspensive/commit/2fd8108ae7f0bd0df8ecbe8bba90e3fe8ec41bbc)\r\nThanks [@manudeli](https://github.com/manudeli)! - feat(react-query)\r\ndepend on @suspensive/react-query-4,5 to support\r\n@tanstack/react-query@4,5 at once automatically\r\n\r\n- Updated dependencies\r\n\\[[`2fd8108`](https://github.com/toss/suspensive/commit/2fd8108ae7f0bd0df8ecbe8bba90e3fe8ec41bbc)]:\r\n - @suspensive/react-query-4@0.0.1-beta.0\r\n - @suspensive/react-query-5@0.0.1-beta.0\r\n - @suspensive/react@2.1.2-beta.0\r\n\r\n## @suspensive/react-query-4@0.0.1-beta.0\r\n\r\n### Patch Changes\r\n\r\n- [#946](https://github.com/toss/suspensive/pull/946)\r\n[`2fd8108`](https://github.com/toss/suspensive/commit/2fd8108ae7f0bd0df8ecbe8bba90e3fe8ec41bbc)\r\nThanks [@manudeli](https://github.com/manudeli)! - feat(react-query)\r\ndepend on @suspensive/react-query-4,5 to support\r\n@tanstack/react-query@4,5 at once automatically\r\n\r\n- Updated dependencies \\[]:\r\n - @suspensive/react@2.1.2-beta.0\r\n\r\n## @suspensive/react-query-5@0.0.1-beta.0\r\n\r\n### Patch Changes\r\n\r\n- [#946](https://github.com/toss/suspensive/pull/946)\r\n[`2fd8108`](https://github.com/toss/suspensive/commit/2fd8108ae7f0bd0df8ecbe8bba90e3fe8ec41bbc)\r\nThanks [@manudeli](https://github.com/manudeli)! - feat(react-query)\r\ndepend on @suspensive/react-query-4,5 to support\r\n@tanstack/react-query@4,5 at once automatically\r\n\r\n- Updated dependencies \\[]:\r\n - @suspensive/react@2.1.2-beta.0\r\n\r\n## @suspensive/react@2.1.2-beta.0\r\n\r\nCo-authored-by: github-actions[bot] ","shortMessageHtmlLink":"chore: version packages (beta) (#951)"}},{"before":"0ce2c79c281bf65d4b43b515248a1846082a98fe","after":"83c0b5756bb6922e076c573fb0040bbea0b99a6a","ref":"refs/heads/react-query/feat/demi","pushedAt":"2024-06-20T09:39:35.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gwansikk","name":"GwanSik Kim","path":"/gwansikk","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/39869096?s=80&v=4"},"commit":{"message":"refactor(react-query): universal suspensive for version 4 & 5","shortMessageHtmlLink":"refactor(react-query): universal suspensive for version 4 & 5"}},{"before":null,"after":"0ce2c79c281bf65d4b43b515248a1846082a98fe","ref":"refs/heads/react-query/feat/demi","pushedAt":"2024-06-19T16:18:16.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"gwansikk","name":"GwanSik Kim","path":"/gwansikk","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/39869096?s=80&v=4"},"commit":{"message":"chore: version packages (beta) (#951)\n\nThis PR was opened by the [Changesets\r\nrelease](https://github.com/changesets/action) GitHub action. When\r\nyou're ready to do a release, you can merge this and the packages will\r\nbe published to npm automatically. If you're not ready to do a release\r\nyet, that's fine, whenever you add more changesets to beta, this PR will\r\nbe updated.\r\n\r\n⚠️⚠️⚠️⚠️⚠️⚠️\r\n\r\n`beta` is currently in **pre mode** so this branch has prereleases\r\nrather than normal releases. If you want to exit prereleases, run\r\n`changeset pre exit` on `beta`.\r\n\r\n⚠️⚠️⚠️⚠️⚠️⚠️\r\n\r\n# Releases\r\n## @suspensive/react-query@2.1.2-beta.0\r\n\r\n### Patch Changes\r\n\r\n- [#946](https://github.com/toss/suspensive/pull/946)\r\n[`2fd8108`](https://github.com/toss/suspensive/commit/2fd8108ae7f0bd0df8ecbe8bba90e3fe8ec41bbc)\r\nThanks [@manudeli](https://github.com/manudeli)! - feat(react-query)\r\ndepend on @suspensive/react-query-4,5 to support\r\n@tanstack/react-query@4,5 at once automatically\r\n\r\n- Updated dependencies\r\n\\[[`2fd8108`](https://github.com/toss/suspensive/commit/2fd8108ae7f0bd0df8ecbe8bba90e3fe8ec41bbc)]:\r\n - @suspensive/react-query-4@0.0.1-beta.0\r\n - @suspensive/react-query-5@0.0.1-beta.0\r\n - @suspensive/react@2.1.2-beta.0\r\n\r\n## @suspensive/react-query-4@0.0.1-beta.0\r\n\r\n### Patch Changes\r\n\r\n- [#946](https://github.com/toss/suspensive/pull/946)\r\n[`2fd8108`](https://github.com/toss/suspensive/commit/2fd8108ae7f0bd0df8ecbe8bba90e3fe8ec41bbc)\r\nThanks [@manudeli](https://github.com/manudeli)! - feat(react-query)\r\ndepend on @suspensive/react-query-4,5 to support\r\n@tanstack/react-query@4,5 at once automatically\r\n\r\n- Updated dependencies \\[]:\r\n - @suspensive/react@2.1.2-beta.0\r\n\r\n## @suspensive/react-query-5@0.0.1-beta.0\r\n\r\n### Patch Changes\r\n\r\n- [#946](https://github.com/toss/suspensive/pull/946)\r\n[`2fd8108`](https://github.com/toss/suspensive/commit/2fd8108ae7f0bd0df8ecbe8bba90e3fe8ec41bbc)\r\nThanks [@manudeli](https://github.com/manudeli)! - feat(react-query)\r\ndepend on @suspensive/react-query-4,5 to support\r\n@tanstack/react-query@4,5 at once automatically\r\n\r\n- Updated dependencies \\[]:\r\n - @suspensive/react@2.1.2-beta.0\r\n\r\n## @suspensive/react@2.1.2-beta.0\r\n\r\nCo-authored-by: github-actions[bot] ","shortMessageHtmlLink":"chore: version packages (beta) (#951)"}},{"before":"2fd8108ae7f0bd0df8ecbe8bba90e3fe8ec41bbc","after":"0ce2c79c281bf65d4b43b515248a1846082a98fe","ref":"refs/heads/beta","pushedAt":"2024-06-19T04:15:16.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"chore: version packages (beta) (#951)\n\nThis PR was opened by the [Changesets\r\nrelease](https://github.com/changesets/action) GitHub action. When\r\nyou're ready to do a release, you can merge this and the packages will\r\nbe published to npm automatically. If you're not ready to do a release\r\nyet, that's fine, whenever you add more changesets to beta, this PR will\r\nbe updated.\r\n\r\n⚠️⚠️⚠️⚠️⚠️⚠️\r\n\r\n`beta` is currently in **pre mode** so this branch has prereleases\r\nrather than normal releases. If you want to exit prereleases, run\r\n`changeset pre exit` on `beta`.\r\n\r\n⚠️⚠️⚠️⚠️⚠️⚠️\r\n\r\n# Releases\r\n## @suspensive/react-query@2.1.2-beta.0\r\n\r\n### Patch Changes\r\n\r\n- [#946](https://github.com/toss/suspensive/pull/946)\r\n[`2fd8108`](https://github.com/toss/suspensive/commit/2fd8108ae7f0bd0df8ecbe8bba90e3fe8ec41bbc)\r\nThanks [@manudeli](https://github.com/manudeli)! - feat(react-query)\r\ndepend on @suspensive/react-query-4,5 to support\r\n@tanstack/react-query@4,5 at once automatically\r\n\r\n- Updated dependencies\r\n\\[[`2fd8108`](https://github.com/toss/suspensive/commit/2fd8108ae7f0bd0df8ecbe8bba90e3fe8ec41bbc)]:\r\n - @suspensive/react-query-4@0.0.1-beta.0\r\n - @suspensive/react-query-5@0.0.1-beta.0\r\n - @suspensive/react@2.1.2-beta.0\r\n\r\n## @suspensive/react-query-4@0.0.1-beta.0\r\n\r\n### Patch Changes\r\n\r\n- [#946](https://github.com/toss/suspensive/pull/946)\r\n[`2fd8108`](https://github.com/toss/suspensive/commit/2fd8108ae7f0bd0df8ecbe8bba90e3fe8ec41bbc)\r\nThanks [@manudeli](https://github.com/manudeli)! - feat(react-query)\r\ndepend on @suspensive/react-query-4,5 to support\r\n@tanstack/react-query@4,5 at once automatically\r\n\r\n- Updated dependencies \\[]:\r\n - @suspensive/react@2.1.2-beta.0\r\n\r\n## @suspensive/react-query-5@0.0.1-beta.0\r\n\r\n### Patch Changes\r\n\r\n- [#946](https://github.com/toss/suspensive/pull/946)\r\n[`2fd8108`](https://github.com/toss/suspensive/commit/2fd8108ae7f0bd0df8ecbe8bba90e3fe8ec41bbc)\r\nThanks [@manudeli](https://github.com/manudeli)! - feat(react-query)\r\ndepend on @suspensive/react-query-4,5 to support\r\n@tanstack/react-query@4,5 at once automatically\r\n\r\n- Updated dependencies \\[]:\r\n - @suspensive/react@2.1.2-beta.0\r\n\r\n## @suspensive/react@2.1.2-beta.0\r\n\r\nCo-authored-by: github-actions[bot] ","shortMessageHtmlLink":"chore: version packages (beta) (#951)"}},{"before":"74f048b9c1193c5f1a170f59aa77d1ce587695f0","after":null,"ref":"refs/heads/changeset-release/beta","pushedAt":"2024-06-19T04:15:16.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"}},{"before":null,"after":"74f048b9c1193c5f1a170f59aa77d1ce587695f0","ref":"refs/heads/changeset-release/beta","pushedAt":"2024-06-19T04:10:58.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"chore: version packages (beta)","shortMessageHtmlLink":"chore: version packages (beta)"}},{"before":"0cab27d132cd55f7b47dda1dd9f6d67a6d871114","after":null,"ref":"refs/heads/suspensive/react-query-v5/initialization","pushedAt":"2024-06-19T04:09:22.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"}},{"before":"7619dec2462c10b78f3c47312b6183daa4e4b0d1","after":"2fd8108ae7f0bd0df8ecbe8bba90e3fe8ec41bbc","ref":"refs/heads/beta","pushedAt":"2024-06-19T04:09:22.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"fix(react-query): depend on @suspensive/react-query-4,5 to support @tanstack/react-query@4,5 at once automatically (#946)\n\nrelated #944, #36 \r\n\r\n# Overview\r\n\r\n\r\n\r\n## PR Checklist\r\n\r\n- [x] I did below actions if need\r\n\r\n1. I read the [Contributing\r\nGuide](https://github.com/toss/suspensive/blob/main/CONTRIBUTING.md)\r\n2. I added documents and tests.\r\n\r\n---------\r\n\r\nCo-authored-by: GwanSik Kim <39869096+gwansikk@users.noreply.github.com>","shortMessageHtmlLink":"fix(react-query): depend on @suspensive/react-query-4,5 to support @t…"}},{"before":"f9a8edf23920ce08718c3e7ce770c51f841cc3ad","after":"0cab27d132cd55f7b47dda1dd9f6d67a6d871114","ref":"refs/heads/suspensive/react-query-v5/initialization","pushedAt":"2024-06-19T02:54:31.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"chore: update","shortMessageHtmlLink":"chore: update"}},{"before":"7c438fdbcca5c7b62ca540576e6817b604dc00f2","after":"f9a8edf23920ce08718c3e7ce770c51f841cc3ad","ref":"refs/heads/suspensive/react-query-v5/initialization","pushedAt":"2024-06-19T02:41:21.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"chore: update\n\nCo-authored-by: GwanSik Kim <39869096+gwansikk@users.noreply.github.com>","shortMessageHtmlLink":"chore: update"}},{"before":"4f68bc123252113e37f53fe7699737f6d79b785f","after":"7c438fdbcca5c7b62ca540576e6817b604dc00f2","ref":"refs/heads/suspensive/react-query-v5/initialization","pushedAt":"2024-06-19T02:19:18.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"chore: update version","shortMessageHtmlLink":"chore: update version"}},{"before":"ef96bb4dc1700dbfa444c677fdf0fdb1b2f976de","after":"4f68bc123252113e37f53fe7699737f6d79b785f","ref":"refs/heads/suspensive/react-query-v5/initialization","pushedAt":"2024-06-19T02:10:59.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"chore: remove unnecessary things","shortMessageHtmlLink":"chore: remove unnecessary things"}},{"before":"8b89f2ff5f0f1d34ec30eedf7fe5f1b08d573cdf","after":"ef96bb4dc1700dbfa444c677fdf0fdb1b2f976de","ref":"refs/heads/suspensive/react-query-v5/initialization","pushedAt":"2024-06-19T02:07:54.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"feat(react-query): depend on @suspensive/react-query-4,5 to support @tanstack/react-query@4,5","shortMessageHtmlLink":"feat(react-query): depend on @suspensive/react-query-4,5 to support @…"}},{"before":"e4f2eda40d4d748ab25377025afbbb3d7f07ff45","after":"8b89f2ff5f0f1d34ec30eedf7fe5f1b08d573cdf","ref":"refs/heads/suspensive/react-query-v5/initialization","pushedAt":"2024-06-18T23:42:07.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"Merge branch 'beta' into suspensive/react-query-v5/initialization","shortMessageHtmlLink":"Merge branch 'beta' into suspensive/react-query-v5/initialization"}},{"before":"26dd707876874764d42d96b5314b4425f3ad5bb0","after":"7619dec2462c10b78f3c47312b6183daa4e4b0d1","ref":"refs/heads/beta","pushedAt":"2024-06-18T23:41:42.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"chore(changeset): pre enter beta","shortMessageHtmlLink":"chore(changeset): pre enter beta"}},{"before":null,"after":"26dd707876874764d42d96b5314b4425f3ad5bb0","ref":"refs/heads/beta","pushedAt":"2024-06-18T23:38:33.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"docs(suspensive.org): update docs for ``, `` (#949)\n\n# Overview\r\n\r\n- Wrote the documentation for ``.\r\n- Fixed a typo in the import statement in the example for\r\n``.\r\n\r\n## PR Checklist\r\n\r\n- [x] I did below actions if need\r\n\r\n1. I read the [Contributing\r\nGuide](https://github.com/toss/suspensive/blob/main/CONTRIBUTING.md)\r\n2. I added documents and tests.","shortMessageHtmlLink":"docs(suspensive.org): update docs for <SuspenseQueries/>, `<Suspens…"}},{"before":"0a1b586bc9f30a6c046b38ba2f142a0324d32e8e","after":"e4f2eda40d4d748ab25377025afbbb3d7f07ff45","ref":"refs/heads/suspensive/react-query-v5/initialization","pushedAt":"2024-06-18T21:51:34.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"Merge remote-tracking branch 'origin/main' into suspensive/react-query-v5/initialization","shortMessageHtmlLink":"Merge remote-tracking branch 'origin/main' into suspensive/react-quer…"}},{"before":"77463c2601eb1c50e66f33185c367002a8dabac5","after":"26dd707876874764d42d96b5314b4425f3ad5bb0","ref":"refs/heads/main","pushedAt":"2024-06-18T21:00:46.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"docs(suspensive.org): update docs for ``, `` (#949)\n\n# Overview\r\n\r\n- Wrote the documentation for ``.\r\n- Fixed a typo in the import statement in the example for\r\n``.\r\n\r\n## PR Checklist\r\n\r\n- [x] I did below actions if need\r\n\r\n1. I read the [Contributing\r\nGuide](https://github.com/toss/suspensive/blob/main/CONTRIBUTING.md)\r\n2. I added documents and tests.","shortMessageHtmlLink":"docs(suspensive.org): update docs for <SuspenseQueries/>, `<Suspens…"}},{"before":"f0f0e54dbbddc84cce04c154ea4b944a80d09a17","after":"0a1b586bc9f30a6c046b38ba2f142a0324d32e8e","ref":"refs/heads/suspensive/react-query-v5/initialization","pushedAt":"2024-06-18T02:34:37.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"Merge branch 'main' into suspensive/react-query-v5/initialization","shortMessageHtmlLink":"Merge branch 'main' into suspensive/react-query-v5/initialization"}},{"before":"5297afaa7dda48b3de7459fc8634f1468525acf3","after":"77463c2601eb1c50e66f33185c367002a8dabac5","ref":"refs/heads/main","pushedAt":"2024-06-18T02:34:22.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"docs: fix broken link in `README.md` (#948)\n\n# Overview\r\n\r\n|\"image\"\r\nsrc=\"https://github.com/toss/suspensive/assets/39869096/fb39e36b-7c47-4da3-8351-8479f8df669e\"||\r\n|---|---|\r\n| Broken link | Clicked `@tanstack/react-query with suspense` link |\r\n\r\n\r\n## PR Checklist\r\n\r\n- [x] I did below actions if need\r\n\r\n1. I read the [Contributing\r\nGuide](https://github.com/toss/suspensive/blob/main/CONTRIBUTING.md)\r\n2. I added documents and tests.","shortMessageHtmlLink":"docs: fix broken link in README.md (#948)"}},{"before":"6d0d63e37d5081fc690a36e62932ff621f474ed5","after":"f0f0e54dbbddc84cce04c154ea4b944a80d09a17","ref":"refs/heads/suspensive/react-query-v5/initialization","pushedAt":"2024-06-17T19:30:12.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"feat(react-query-5): initialization","shortMessageHtmlLink":"feat(react-query-5): initialization"}},{"before":"b603555a9378feb8bbfc56d4273608ce419ec9e1","after":"6d0d63e37d5081fc690a36e62932ff621f474ed5","ref":"refs/heads/suspensive/react-query-v5/initialization","pushedAt":"2024-06-17T19:12:43.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"manudeli","name":"Jonghyeon Ko","path":"/manudeli","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/61593290?s=80&v=4"},"commit":{"message":"feat(react-query-v5): initialization","shortMessageHtmlLink":"feat(react-query-v5): initialization"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEa4L-swA","startCursor":null,"endCursor":null}},"title":"Activity · toss/suspensive"}