{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":104394958,"defaultBranch":"main","name":"true-myth","ownerLogin":"true-myth","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2017-09-21T20:21:24.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/43589776?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1716694630.0","currentOid":""},"activityList":{"items":[{"before":"625d4f61b0539fe728047304b7b12eb1d6243ea3","after":"a21b863e14ff42dc5855a9b4bcac5f7f9d4c85a8","ref":"refs/heads/dprint","pushedAt":"2024-05-26T03:41:04.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Ignore dprint in git blame","shortMessageHtmlLink":"Ignore dprint in git blame"}},{"before":"937d730e79de78cc4e537da174d05428af631d72","after":"ae7758367935b3e9725b5cbda4a640e5b1034aa2","ref":"refs/heads/gh-pages","pushedAt":"2024-05-26T03:37:35.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Deploying to gh-pages from @ true-myth/true-myth@8ae5cdefc9d7be430649764aada75b05f8fb48f4 🚀","shortMessageHtmlLink":"Deploying to gh-pages from @ 8ae5cde 🚀"}},{"before":"312e40720f669137bdafde84e4c5cb4627ca8067","after":"8ae5cdefc9d7be430649764aada75b05f8fb48f4","ref":"refs/heads/main","pushedAt":"2024-05-26T03:37:10.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Release 7.3.0","shortMessageHtmlLink":"Release 7.3.0"}},{"before":"00c80fc4d6a75fdda62aaf4a7b61a6432f5bb1f7","after":null,"ref":"refs/heads/fix-just-too","pushedAt":"2024-05-26T03:35:55.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"}},{"before":"57def2b9e88e7f98f790a03c37829b9b1dd4046a","after":"312e40720f669137bdafde84e4c5cb4627ca8067","ref":"refs/heads/main","pushedAt":"2024-05-26T03:35:54.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Merge pull request #756 from true-myth/fix-just-too\n\nForbid `null` and `undefined` as arguments to `Maybe.just`","shortMessageHtmlLink":"Merge pull request #756 from true-myth/fix-just-too"}},{"before":"e2db5acc52c9513bd4d5165831b504f3f5d37c8a","after":"937d730e79de78cc4e537da174d05428af631d72","ref":"refs/heads/gh-pages","pushedAt":"2024-05-26T03:35:53.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Deploying to gh-pages from @ true-myth/true-myth@57def2b9e88e7f98f790a03c37829b9b1dd4046a 🚀","shortMessageHtmlLink":"Deploying to gh-pages from @ 57def2b 🚀"}},{"before":"1d803b358b452f6604e1ffce8f02f096e1e7d825","after":"57def2b9e88e7f98f790a03c37829b9b1dd4046a","ref":"refs/heads/main","pushedAt":"2024-05-26T03:35:04.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Release 7.2.1","shortMessageHtmlLink":"Release 7.2.1"}},{"before":"caf1fa29fdf88b16fafb91e81acd9cecb6d34769","after":"00c80fc4d6a75fdda62aaf4a7b61a6432f5bb1f7","ref":"refs/heads/fix-just-too","pushedAt":"2024-05-26T03:32:41.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Forbid `null` and `undefined` as arguments to `Maybe.just`\n\nWhile working on #753, I noticed that a similar issue applies to the\n`Maybe.just` constructor as to `Maybe.of`: it historically would allow\nfunctions which produce `null` or `undefined`. I included the fix for\nthat specific issue in #755. However, as I did so, I realized that the\ntypes for `Maybe.just` have been looser than they need to be for quite a\nwhile now: when we wrote the library, we could not properly forbid\n`null` or `undefined` at construction time, because we had no good way\nto name the constraint that any argument passed to `just` be non-null.\nThat changed several years ago, so we can now require only types which\nare `{}`, i.e. not `null` or `undefined`, on the type side while also\ncontinuing to throw if someone passes incorrectly typed data which is\nactually `null` or `undefined`.\n\nThis is not a breaking change, but a *feature*: it is what we always\nwanted, and aligns the types with the runtime behavior. However, it may\nin some cases require additional type annotations when working directly\nwith a `Result` and using toolbelt functions. Specifically, there were\nsome cases where the old implementation unsafely allowed `unknown`,\nwhich necessarily includes `null | undefined`, and could therefore end\nup with a `Maybe`, and indeed via the unconstrained generic\ncould move from `Result` to `Maybe` using e.g. the\n`transposeResult` method. This is no longer possible! 🎉","shortMessageHtmlLink":"Forbid null and undefined as arguments to Maybe.just"}},{"before":"24b435bfb314f1ac9ce526a3c05e31887e70d5a4","after":"caf1fa29fdf88b16fafb91e81acd9cecb6d34769","ref":"refs/heads/fix-just-too","pushedAt":"2024-05-26T03:30:37.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Forbid `null` and `undefined` as arguments to `Maybe.just`\n\nWhile working on #753, I noticed that a similar issue applies to the\n`Maybe.just` constructor as to `Maybe.of`: it historically would allow\nfunctions which produce `null` or `undefined`. I included the fix for\nthat specific issue in #755. However, as I did so, I realized that the\ntypes for `Maybe.just` have been looser than they need to be for quite a\nwhile now: when we wrote the library, we could not properly forbid\n`null` or `undefined` at construction time, because we had no good way\nto name the constraint that any argument passed to `just` be non-null.\nThat changed several years ago, so we can now require only types which\nare `{}`, i.e. not `null` or `undefined`, on the type side while also\ncontinuing to throw if someone passes incorrectly typed data which is\nactually `null` or `undefined`.\n\nThis is not a breaking change, but a *feature*: it is what we always\nwanted, and aligns the types with the runtime behavior.","shortMessageHtmlLink":"Forbid null and undefined as arguments to Maybe.just"}},{"before":"f913c0476a5445e059f0a18a3319c9c80b6c9175","after":"24b435bfb314f1ac9ce526a3c05e31887e70d5a4","ref":"refs/heads/fix-just-too","pushedAt":"2024-05-26T03:28:10.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Forbid `null` and `undefined` as arguments to `Maybe.just`\n\nWhile working on #753, I noticed that a similar issue applies to the\n`Maybe.just` constructor as to `Maybe.of`: it historically would allow\nfunctions which produce `null` or `undefined`. I included the fix for\nthat specific issue in #755. However, as I did so, I realized that the\ntypes for `Maybe.just` have been looser than they need to be for quite a\nwhile now: when we wrote the library, we could not properly forbid\n`null` or `undefined` at construction time, because we had no good way\nto name the constraint that any argument passed to `just` be non-null.\nThat changed several years ago, so we can now require only types which\nare `{}`, i.e. not `null` or `undefined`, on the type side while also\ncontinuing to throw if someone passes incorrectly typed data which is\nactually `null` or `undefined`.\n\nThis is not a breaking change, but a *feature*: it is what we always\nwanted, and aligns the types with the runtime behavior.","shortMessageHtmlLink":"Forbid null and undefined as arguments to Maybe.just"}},{"before":"f8491a496d57ab12bb9c2d668b556564ff31425d","after":"f913c0476a5445e059f0a18a3319c9c80b6c9175","ref":"refs/heads/fix-just-too","pushedAt":"2024-05-26T03:24:28.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Forbid `null` and `undefined` as arguments to `Maybe.just`\n\nWhile working on #753, I noticed that a similar issue applies to the\n`Maybe.just` constructor as to `Maybe.of`: it historically would allow\nfunctions which produce `null` or `undefined`. I included the fix for\nthat specific issue in #755. However, as I did so, I realized that the\ntypes for `Maybe.just` have been looser than they need to be for quite a\nwhile now: when we wrote the library, we could not properly forbid\n`null` or `undefined` at construction time, because we had no good way\nto name the constraint that any argument passed to `just` be non-null.\nThat changed several years ago, so we can now require only types which\nare `{}`, i.e. not `null` or `undefined`, on the type side while also\ncontinuing to throw if someone passes incorrectly typed data which is\nactually `null` or `undefined`.\n\n(This is not a breaking change, but a *feature*: it is what we always\nwanted, and aligns the types with the runtime behavior.)","shortMessageHtmlLink":"Forbid null and undefined as arguments to Maybe.just"}},{"before":"8e6f89b69c60db13f7b7d1eed8d7a51f235a9005","after":null,"ref":"refs/heads/fix-753","pushedAt":"2024-05-26T03:24:02.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"}},{"before":"29affce2d0667253010c2cdbe60d287c8f33a962","after":"1d803b358b452f6604e1ffce8f02f096e1e7d825","ref":"refs/heads/main","pushedAt":"2024-05-26T03:24:01.000Z","pushType":"pr_merge","commitsCount":4,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Merge pull request #755 from true-myth/fix-753\n\nCorrectly handle `null` and `undefined` in function return types","shortMessageHtmlLink":"Merge pull request #755 from true-myth/fix-753"}},{"before":"fa85a5329147966800c94ef3c171f4185c6b6c10","after":"8e6f89b69c60db13f7b7d1eed8d7a51f235a9005","ref":"refs/heads/fix-753","pushedAt":"2024-05-26T03:23:18.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Add an explicit type constraint in `transposeResult`\n\nSomething about adding the overloads for `Maybe.just` and `Maybe.of`\ncauses inference not to work as effectively in the case of the body of\nthis helper, so help it out a bit.","shortMessageHtmlLink":"Add an explicit type constraint in transposeResult"}},{"before":"698e452e1678acdea4ede3e3f120097645e30d4c","after":"f8491a496d57ab12bb9c2d668b556564ff31425d","ref":"refs/heads/fix-just-too","pushedAt":"2024-05-26T03:23:18.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Forbid `null` and `undefined` as arguments to `Maybe.just`\n\nWhile working on #753, I noticed that a similar issue applies to the\n`Maybe.just` constructor as to `Maybe.of`: it historically would allow\nfunctions which produce `null` or `undefined`. I included the fix for\nthat specific issue in #755. However, as I did so, I realized that the\ntypes for `Maybe.just` have been looser than they need to be for quite a\nwhile now: when we wrote the library, we could not properly forbid\n`null` or `undefined` at construction time, because we had no good way\nto name the constraint that any argument passed to `just` be non-null.\nThat changed several years ago, so we can now require only types which\nare `{}`, i.e. not `null` or `undefined`, on the type side while also\ncontinuing to throw if someone passes incorrectly typed data which is\nactually `null` or `undefined`.\n\n(This is not a breaking change, but a *feature*: it is what we always\nwanted, and aligns the types with the runtime behavior.)","shortMessageHtmlLink":"Forbid null and undefined as arguments to Maybe.just"}},{"before":null,"after":"698e452e1678acdea4ede3e3f120097645e30d4c","ref":"refs/heads/fix-just-too","pushedAt":"2024-05-26T03:16:53.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Forbid `null` and `undefined` as arguments to `Maybe.just`\n\nWhile working on #753, I noticed that a similar issue applies to the\n`Maybe.just` constructor as to `Maybe.of`: it historically would allow\nfunctions which produce `null` or `undefined`. I included the fix for\nthat specific issue in #755. However, as I did so, I realized that the\ntypes for `Maybe.just` have been looser than they need to be for quite a\nwhile now: when we wrote the library, we could not properly forbid\n`null` or `undefined` at construction time, because we had no good way\nto name the constraint that any argument passed to `just` be non-null.\nThat changed several years ago, so we can now require only types which\nare `{}`, i.e. not `null` or `undefined`, on the type side while also\ncontinuing to throw if someone passes incorrectly typed data which is\nactually `null` or `undefined`.\n\n(This is not a breaking change, but a *feature*: it is what we always\nwanted, and aligns the types with the runtime behavior.)","shortMessageHtmlLink":"Forbid null and undefined as arguments to Maybe.just"}},{"before":"534a199ce8919d29c39d8616ca77cd52377c1549","after":"fa85a5329147966800c94ef3c171f4185c6b6c10","ref":"refs/heads/fix-753","pushedAt":"2024-05-26T03:16:40.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Prevent `Maybe.map` and `Maybe.ap` from returning `null`\n\nIn the case of `Maybe.map`, this is straightforward, by applying a type\nconstraint on the `U` type paramater. With `Maybe.ap`, the same holds,\nbut it is also important to prevent users from even working with a\nlifted function type which will produce this, so also further introduce\ndedicated overrides for passing functions to `Maybe.of` or `Maybe.just`,\nwhich produce `never` rather than a `Maybe<() => null>`, so that it is\nimpossible to use those types at all.\n\nIt is, unfortunately, not possible to prevent the construction of those\ntypes directly, since there is no way to constrain a generic to allow\n“anything but a function”.","shortMessageHtmlLink":"Prevent Maybe.map and Maybe.ap from returning null"}},{"before":"868f9fcf771bd877b2e032c99f0616b9c988e8cb","after":"534a199ce8919d29c39d8616ca77cd52377c1549","ref":"refs/heads/fix-753","pushedAt":"2024-05-26T03:02:37.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Prevent `Maybe.map` and `Maybe.ap` from returning `null`\n\nIn the case of `Maybe.map`, this is straightforward, by applying a type\nconstraint on the `U` type paramater. With `Maybe.ap`, the same holds,\nbut it is also important to prevent users from even working with a\nlifted function type which will produce this, so also further introduce\ndedicated overrides for passing functions to `Maybe.of` or `Maybe.just`,\nwhich produce `never` rather than a `Maybe<() => null>`, so that it is\nimpossible to use those types at all.\n\nIt is, unfortunately, not possible to prevent the construction of those\ntypes directly, since there is no way to constrain a generic to allow\n“anything but a function”.","shortMessageHtmlLink":"Prevent Maybe.map and Maybe.ap from returning null"}},{"before":null,"after":"868f9fcf771bd877b2e032c99f0616b9c988e8cb","ref":"refs/heads/fix-753","pushedAt":"2024-05-26T02:23:40.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Prevent `Maybe.map` and `Maybe.ap` from returning `null`\n\nIn the case of `Maybe.map`, this is straightforward, by applying a type\nconstraint on the `U` type paramater. With `Maybe.ap`, the same holds,\nbut it is also important to prevent users from even working with a\nlifted function type which will produce this, so also further introduce\ndedicated overrides for passing functions to `Maybe.of` or `Maybe.just`,\nwhich produce `never` rather than a `Maybe<() => null>`, so that it is\nimpossible to use those types at all.\n\nIt is, unfortunately, not possible to prevent the construction of those\ntypes directly, since there is no way to constrain a generic to allow\n“anything but a function”.","shortMessageHtmlLink":"Prevent Maybe.map and Maybe.ap from returning null"}},{"before":"cf7d6bc73773c1b7eddf26e4a0a1dfb73eabe3e6","after":"625d4f61b0539fe728047304b7b12eb1d6243ea3","ref":"refs/heads/dprint","pushedAt":"2024-05-25T03:27:19.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Ignore dprint in git blame","shortMessageHtmlLink":"Ignore dprint in git blame"}},{"before":"134eeded892732092bdc6dd2177a10f4beb6ce4a","after":"29affce2d0667253010c2cdbe60d287c8f33a962","ref":"refs/heads/main","pushedAt":"2024-05-25T03:21:41.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Merge pull request #754 from true-myth/fix-checkout-action\n\ninfra: update to actions/checkout@v4 for GHA","shortMessageHtmlLink":"Merge pull request #754 from true-myth/fix-checkout-action"}},{"before":"066f8efb160b900d26c04120399be7320fb8e4ed","after":null,"ref":"refs/heads/fix-checkout-action","pushedAt":"2024-05-25T03:21:41.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"}},{"before":null,"after":"066f8efb160b900d26c04120399be7320fb8e4ed","ref":"refs/heads/fix-checkout-action","pushedAt":"2024-05-25T03:20:05.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"infra: update to actions/checkout@v4 for GHA","shortMessageHtmlLink":"infra: update to actions/checkout@v4 for GHA"}},{"before":"a89edd2a23edb818e2e51468bcdf6d83b4bf2d30","after":"134eeded892732092bdc6dd2177a10f4beb6ce4a","ref":"refs/heads/main","pushedAt":"2024-05-21T19:52:52.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Merge pull request #752 from true-myth/dependabot/npm_and_yarn/release-it-17.3.0\n\nbuild(deps-dev): bump release-it from 17.2.1 to 17.3.0","shortMessageHtmlLink":"Merge pull request #752 from true-myth/dependabot/npm_and_yarn/releas…"}},{"before":"e48c94a6587bd8cc6c3511d8fcdd0e081e557efb","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/release-it-17.3.0","pushedAt":"2024-05-21T19:52:52.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"}},{"before":null,"after":"e48c94a6587bd8cc6c3511d8fcdd0e081e557efb","ref":"refs/heads/dependabot/npm_and_yarn/release-it-17.3.0","pushedAt":"2024-05-21T11:49: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":"---\nupdated-dependencies:\n- dependency-name: release-it\n dependency-type: direct:development\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"---"}},{"before":"6c947c60497d89523cf4f6db64ec17b44cc5b3d5","after":"a89edd2a23edb818e2e51468bcdf6d83b4bf2d30","ref":"refs/heads/main","pushedAt":"2024-05-16T02:01:50.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Include accidentally missed item in CHANGELOG","shortMessageHtmlLink":"Include accidentally missed item in CHANGELOG"}},{"before":"13e9231df2745f20315c29f91c5cd52c5f6b048c","after":"e2db5acc52c9513bd4d5165831b504f3f5d37c8a","ref":"refs/heads/gh-pages","pushedAt":"2024-05-16T02:00:45.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Deploying to gh-pages from @ true-myth/true-myth@6c947c60497d89523cf4f6db64ec17b44cc5b3d5 🚀","shortMessageHtmlLink":"Deploying to gh-pages from @ 6c947c6 🚀"}},{"before":"9fb6cca66b8400a67d2b5dc24c757533a5c81300","after":"6c947c60497d89523cf4f6db64ec17b44cc5b3d5","ref":"refs/heads/main","pushedAt":"2024-05-16T01:59:16.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"},"commit":{"message":"Release 7.2.0","shortMessageHtmlLink":"Release 7.2.0"}},{"before":"fecf97bd5a925bf30032fd396c8668823843c388","after":null,"ref":"refs/heads/push-tzrnlulzkmku","pushedAt":"2024-05-15T14:02:40.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"chriskrycho","name":"Chris Krycho","path":"/chriskrycho","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2403023?s=80&v=4"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEU_nNwwA","startCursor":null,"endCursor":null}},"title":"Activity · true-myth/true-myth"}