{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":193794106,"defaultBranch":"main","name":"doctocat","ownerLogin":"primer","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2019-06-25T22:57:14.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/7143434?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1721814351.0","currentOid":""},"activityList":{"items":[{"before":"9b1a2ad6e1054677d2f3fbc7e3a17dea074d6091","after":null,"ref":"refs/heads/changeset-release/main","pushedAt":"2024-07-24T09:44:52.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pouretrebelle","name":"Charlotte Dann","path":"/pouretrebelle","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1901935?s=80&v=4"}},{"before":"52600573b858f4036a8580c7b730fcbc4c7dab51","after":"38e0b47c8f6c2a0f44927c74a67bef4225f2a951","ref":"refs/heads/main","pushedAt":"2024-07-24T09:44:50.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"pouretrebelle","name":"Charlotte Dann","path":"/pouretrebelle","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1901935?s=80&v=4"},"commit":{"message":"Version Packages (#740)\n\nCo-authored-by: github-actions[bot] ","shortMessageHtmlLink":"Version Packages (#740)"}},{"before":null,"after":"9b1a2ad6e1054677d2f3fbc7e3a17dea074d6091","ref":"refs/heads/changeset-release/main","pushedAt":"2024-07-18T12:34:10.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"primer-css","name":"GitHub Design Systems Bot","path":"/primer-css","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/30705008?s=80&v=4"},"commit":{"message":"Version Packages","shortMessageHtmlLink":"Version Packages"}},{"before":"352203a2b7ccbf21f92c6bf567ee5dd285b17d71","after":null,"ref":"refs/heads/pouretrebelle/fix-blowout","pushedAt":"2024-07-18T12:33:05.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"pouretrebelle","name":"Charlotte Dann","path":"/pouretrebelle","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1901935?s=80&v=4"}},{"before":"b17fcc89d5959f5d79ca88ecee1ee4948a757e1b","after":"52600573b858f4036a8580c7b730fcbc4c7dab51","ref":"refs/heads/main","pushedAt":"2024-07-18T12:33:03.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"pouretrebelle","name":"Charlotte Dann","path":"/pouretrebelle","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1901935?s=80&v=4"},"commit":{"message":"Fix content blowout (#739)\n\n* Fix width blowout with wide content\n\nIn React Brand there are a few pages where the content on large screens\nis wider than other pages. At certain breakpoints it also overlaps the\nnavigation.\n\nThis is a quirk of a flex child not collapsing where its children have\nwider content than the flex calculation. The default min-width is auto,\nand since there are children with width: 100%, auto corresponds\nto max-content, which causes the blowout. To fix this we can set the\nmin-width to 0, which will make the children respect the flex calculation.\n\nSee https://css-tricks.com/flexbox-truncated-text/#aa-the-solution-is-min-width-0-on-the-flex-child\n\n* Add changeset","shortMessageHtmlLink":"Fix content blowout (#739)"}},{"before":"d5d0e66e676929ff1818e8734697b55002aa25ec","after":"352203a2b7ccbf21f92c6bf567ee5dd285b17d71","ref":"refs/heads/pouretrebelle/fix-blowout","pushedAt":"2024-07-05T12:43:37.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"pouretrebelle","name":"Charlotte Dann","path":"/pouretrebelle","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1901935?s=80&v=4"},"commit":{"message":"Add changeset","shortMessageHtmlLink":"Add changeset"}},{"before":"19f85abd7822d0640a6d91d686cb11f3a338855d","after":"d5d0e66e676929ff1818e8734697b55002aa25ec","ref":"refs/heads/pouretrebelle/fix-blowout","pushedAt":"2024-07-05T12:43:02.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"pouretrebelle","name":"Charlotte Dann","path":"/pouretrebelle","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1901935?s=80&v=4"},"commit":{"message":"Add changeset","shortMessageHtmlLink":"Add changeset"}},{"before":"5ac2cbb7a35e781f92a1c03779b84579d51871e9","after":"19f85abd7822d0640a6d91d686cb11f3a338855d","ref":"refs/heads/pouretrebelle/fix-blowout","pushedAt":"2024-07-05T12:28:44.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"pouretrebelle","name":"Charlotte Dann","path":"/pouretrebelle","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1901935?s=80&v=4"},"commit":{"message":"Add changeset","shortMessageHtmlLink":"Add changeset"}},{"before":null,"after":"5ac2cbb7a35e781f92a1c03779b84579d51871e9","ref":"refs/heads/pouretrebelle/fix-blowout","pushedAt":"2024-07-05T12:21:05.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"pouretrebelle","name":"Charlotte Dann","path":"/pouretrebelle","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1901935?s=80&v=4"},"commit":{"message":"Fix width blowout with wide content\n\nIn React Brand there are a few page where the content on large screens\nis wider than other pages. At certain breakpoints it also overlaps the\nnavigation.\n\nThis is a quirk of flexbox not collapsing content that has a width of\n100% - the flex child will grow to fit the children (in this case\ncapped at 960px due to the min-width value) and disregard the flex\ncontainer calculation.\n\nmin-width: auto; is allowing this blowout, so the way to fix it is to\nset the min-width to 0.\n\nSee https://css-tricks.com/flexbox-truncated-text/#aa-the-solution-is-min-width-0-on-the-flex-child","shortMessageHtmlLink":"Fix width blowout with wide content"}},{"before":"587e7e263595a6e9fc2c620d57d0e1e1832db2d8","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/primer/octicons-react-19.10.0","pushedAt":"2024-07-03T18:36:04.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"0c7377aafc07d4731f3b40f15c379d13439d74a8","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/preval.macro-5.0.0","pushedAt":"2024-07-03T18:35:51.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"a728cd2e6e117fe636091a0827bba04bb5000e48","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/eslint-9.6.0","pushedAt":"2024-07-03T18:35:38.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"90358c8a2a2ea293d4fbd1f2634602c397fc8277","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/braces-3.0.3","pushedAt":"2024-07-03T18:35:23.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"jonrohan","name":"Jon Rohan","path":"/jonrohan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/54012?s=80&v=4"}},{"before":"3ad60aac2c2e7ee0c08722bb82b65d0d803ba100","after":"b17fcc89d5959f5d79ca88ecee1ee4948a757e1b","ref":"refs/heads/main","pushedAt":"2024-07-03T18:35:21.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"jonrohan","name":"Jon Rohan","path":"/jonrohan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/54012?s=80&v=4"},"commit":{"message":"Bump braces from 3.0.2 to 3.0.3 (#733)\n\nBumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3.\r\n- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)\r\n- [Commits](https://github.com/micromatch/braces/compare/3.0.2...3.0.3)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: braces\r\n dependency-type: indirect\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Bump braces from 3.0.2 to 3.0.3 (#733)"}},{"before":"a8ebe98b85e54a2f30f16fcf7b76b50387145b89","after":null,"ref":"refs/heads/dependabot/github_actions/primer/dot-github-2.1.1","pushedAt":"2024-07-03T18:31:18.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"jonrohan","name":"Jon Rohan","path":"/jonrohan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/54012?s=80&v=4"}},{"before":"af3cb13071ba8ec542cf3f74a39389827723e427","after":"3ad60aac2c2e7ee0c08722bb82b65d0d803ba100","ref":"refs/heads/main","pushedAt":"2024-07-03T18:31:16.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"jonrohan","name":"Jon Rohan","path":"/jonrohan","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/54012?s=80&v=4"},"commit":{"message":"Bump primer/.github from 1.0.0 to 2.1.1 (#734)\n\nBumps [primer/.github](https://github.com/primer/.github) from 1.0.0 to 2.1.1.\r\n- [Release notes](https://github.com/primer/.github/releases)\r\n- [Commits](https://github.com/primer/.github/compare/v1.0.0...v2.1.1)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: primer/.github\r\n dependency-type: direct:production\r\n update-type: version-update:semver-major\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"Bump primer/.github from 1.0.0 to 2.1.1 (#734)"}},{"before":"dfaadc014c368c2f1760ea6aba37e16bba42a188","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/downshift-9.0.6","pushedAt":"2024-07-03T00:35:45.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"broccolinisoup","name":"Armağan","path":"/broccolinisoup","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1446503?s=80&v=4"}},{"before":"69079f89d1a2f2710b196df7081100896ae3423a","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/primer/octicons-react-19.9.0","pushedAt":"2024-07-01T14:03:53.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"587e7e263595a6e9fc2c620d57d0e1e1832db2d8","ref":"refs/heads/dependabot/npm_and_yarn/primer/octicons-react-19.10.0","pushedAt":"2024-07-01T14:03:49.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump @primer/octicons-react from 17.5.0 to 19.10.0\n\nBumps [@primer/octicons-react](https://github.com/primer/octicons) from 17.5.0 to 19.10.0.\n- [Release notes](https://github.com/primer/octicons/releases)\n- [Changelog](https://github.com/primer/octicons/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/primer/octicons/compare/v17.5.0...v19.10.0)\n\n---\nupdated-dependencies:\n- dependency-name: \"@primer/octicons-react\"\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump @primer/octicons-react from 17.5.0 to 19.10.0"}},{"before":null,"after":"0c7377aafc07d4731f3b40f15c379d13439d74a8","ref":"refs/heads/dependabot/npm_and_yarn/preval.macro-5.0.0","pushedAt":"2024-07-01T13:50:26.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump preval.macro from 3.0.0 to 5.0.0\n\nBumps [preval.macro](https://github.com/kentcdodds/preval.macro) from 3.0.0 to 5.0.0.\n- [Commits](https://github.com/kentcdodds/preval.macro/commits)\n\n---\nupdated-dependencies:\n- dependency-name: preval.macro\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump preval.macro from 3.0.0 to 5.0.0"}},{"before":null,"after":"dfaadc014c368c2f1760ea6aba37e16bba42a188","ref":"refs/heads/dependabot/npm_and_yarn/downshift-9.0.6","pushedAt":"2024-07-01T13:50:04.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump downshift from 3.4.8 to 9.0.6\n\nBumps [downshift](https://github.com/downshift-js/downshift) from 3.4.8 to 9.0.6.\n- [Release notes](https://github.com/downshift-js/downshift/releases)\n- [Changelog](https://github.com/downshift-js/downshift/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/downshift-js/downshift/compare/v3.4.8...v9.0.6)\n\n---\nupdated-dependencies:\n- dependency-name: downshift\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump downshift from 3.4.8 to 9.0.6"}},{"before":"53e78e3ac48d98c6527d74eaaf2b468bdefb0dc7","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/eslint-9.4.0","pushedAt":"2024-07-01T13:49:44.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"a728cd2e6e117fe636091a0827bba04bb5000e48","ref":"refs/heads/dependabot/npm_and_yarn/eslint-9.6.0","pushedAt":"2024-07-01T13:49:40.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump eslint from 8.52.0 to 9.6.0\n\nBumps [eslint](https://github.com/eslint/eslint) from 8.52.0 to 9.6.0.\n- [Release notes](https://github.com/eslint/eslint/releases)\n- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/eslint/eslint/compare/v8.52.0...v9.6.0)\n\n---\nupdated-dependencies:\n- dependency-name: eslint\n dependency-type: direct:development\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump eslint from 8.52.0 to 9.6.0"}},{"before":"c2678774bc2d09ccd2557c04aa969d239f4ec215","after":null,"ref":"refs/heads/dependabot/github_actions/primer/dot-github-2.1.0","pushedAt":"2024-07-01T13:47:41.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"a8ebe98b85e54a2f30f16fcf7b76b50387145b89","ref":"refs/heads/dependabot/github_actions/primer/dot-github-2.1.1","pushedAt":"2024-07-01T13:47:37.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump primer/.github from 1.0.0 to 2.1.1\n\nBumps [primer/.github](https://github.com/primer/.github) from 1.0.0 to 2.1.1.\n- [Release notes](https://github.com/primer/.github/releases)\n- [Commits](https://github.com/primer/.github/compare/v1.0.0...v2.1.1)\n\n---\nupdated-dependencies:\n- dependency-name: primer/.github\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump primer/.github from 1.0.0 to 2.1.1"}},{"before":"2fac3c2095e5689ced265b8b700c8878a03489b5","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/express-4.19.2","pushedAt":"2024-06-28T16:02:27.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"}},{"before":"a218dcb39b27265459f34c70782149d9f2b08d68","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/es5-ext-0.10.63","pushedAt":"2024-06-25T10:02:31.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"}},{"before":"78141e5ee17ef7685ee82509ac980fbb567bcdfb","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/follow-redirects-1.15.6","pushedAt":"2024-06-25T10:02:29.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"}},{"before":null,"after":"90358c8a2a2ea293d4fbd1f2634602c397fc8277","ref":"refs/heads/dependabot/npm_and_yarn/braces-3.0.3","pushedAt":"2024-06-15T16:09:44.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"Bump braces from 3.0.2 to 3.0.3\n\nBumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3.\n- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/micromatch/braces/compare/3.0.2...3.0.3)\n\n---\nupdated-dependencies:\n- dependency-name: braces\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump braces from 3.0.2 to 3.0.3"}},{"before":"5bd845f22e32046a2744b8dd74141cb1bf5c2990","after":"522fa7fa02089299f8861026f21e0af2564ff815","ref":"refs/heads/next","pushedAt":"2024-06-12T13:58:50.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"joshblack","name":"Josh Black","path":"/joshblack","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/3901764?s=80&v=4"},"commit":{"message":"chore: check-in work","shortMessageHtmlLink":"chore: check-in work"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEh8NDfwA","startCursor":null,"endCursor":null}},"title":"Activity · primer/doctocat"}