{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":33994380,"defaultBranch":"master","name":"go-fuzz","ownerLogin":"dvyukov","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2015-04-15T13:07:50.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/1095328?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1706973970.0","currentOid":""},"activityList":{"items":[{"before":"097e1d49c87e00c4548c18fa457400faeea44200","after":null,"ref":"refs/heads/josh/more-pos","pushedAt":"2024-02-03T15:26:10.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"josharian","name":"Josh Bleecher Snyder","path":"/josharian","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/67496?s=80&v=4"}},{"before":"7955ebc9f2de3517b13dcac8425fcbe7da75287a","after":"b1ce7bc07150b190caefe82a3313a3a0a23aff6d","ref":"refs/heads/master","pushedAt":"2024-02-03T15:26:06.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"josharian","name":"Josh Bleecher Snyder","path":"/josharian","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/67496?s=80&v=4"},"commit":{"message":"go-fuzz-build: add even more positions\n\nAnd re-instrument reflect. Sheesh.\n\n#294. Again.","shortMessageHtmlLink":"go-fuzz-build: add even more positions"}},{"before":null,"after":"097e1d49c87e00c4548c18fa457400faeea44200","ref":"refs/heads/josh/more-pos","pushedAt":"2024-02-02T23:39:45.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"josharian","name":"Josh Bleecher Snyder","path":"/josharian","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/67496?s=80&v=4"},"commit":{"message":"go-fuzz-build: add even more positions\n\nAnd re-instrument reflect. Sheesh.\n\n#294. Again.","shortMessageHtmlLink":"go-fuzz-build: add even more positions"}},{"before":"38c86c7c51e84ea350a5568be129f9828ccaa979","after":null,"ref":"refs/heads/josh/ignore-invalid-int-literals","pushedAt":"2023-12-14T14:38:06.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"josharian","name":"Josh Bleecher Snyder","path":"/josharian","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/67496?s=80&v=4"}},{"before":"5581da83c52f8eab30e9b06e999b03bfa1b86b2f","after":"7955ebc9f2de3517b13dcac8425fcbe7da75287a","ref":"refs/heads/master","pushedAt":"2023-12-14T14:38:02.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"josharian","name":"Josh Bleecher Snyder","path":"/josharian","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/67496?s=80&v=4"},"commit":{"message":"go-fuzz-build: ignore invalid int literals\n\nBetter would be to handle them.\nBut ignoring them is more useful than failing to build.\n\nFixes #246 (at least as much am I'm ever going to)","shortMessageHtmlLink":"go-fuzz-build: ignore invalid int literals"}},{"before":null,"after":"38c86c7c51e84ea350a5568be129f9828ccaa979","ref":"refs/heads/josh/ignore-invalid-int-literals","pushedAt":"2023-12-13T22:26:45.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"josharian","name":"Josh Bleecher Snyder","path":"/josharian","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/67496?s=80&v=4"},"commit":{"message":"go-fuzz-build: ignore invalid int literals\n\nBetter would be to handle them.\nBut ignoring them is more useful than failing to build.\n\nFixes #246 (at least as much am I'm ever going to)","shortMessageHtmlLink":"go-fuzz-build: ignore invalid int literals"}},{"before":"71c5acc2da39cf546e1cdd241138f13fa5bc07b6","after":null,"ref":"refs/heads/josh/fix-reflect-m1","pushedAt":"2023-10-19T02:16:56.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"josharian","name":"Josh Bleecher Snyder","path":"/josharian","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/67496?s=80&v=4"}},{"before":"95bc4d742dfadd5d3b07bd7ea7ba31a52de633ad","after":"5581da83c52f8eab30e9b06e999b03bfa1b86b2f","ref":"refs/heads/master","pushedAt":"2023-10-19T02:16:53.000Z","pushType":"pr_merge","commitsCount":3,"pusher":{"login":"josharian","name":"Josh Bleecher Snyder","path":"/josharian","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/67496?s=80&v=4"},"commit":{"message":"go-fuzz-build: do not instrument package reflect\n\nThis is unfortunate, but it circumvents a build failure:\n\nfailed to execute go build: exit status 1\n# reflect\n/Users/josh/go/1.21/src/reflect/value.go:3958: misplaced compiler directive\n\nThe problem is that in this code:\n\n//go:nosplit\nfunc noescape(p unsafe.Pointer) unsafe.Pointer {\n\nThe nosplit gets separated from the func, and placed\nin the body of the function above it. Oops.\n\nWe could probably be more careful and make this work,\nbut the fix is non-obvious, and probably not even in this package.\n\nThis project is on life support.\nIgnoring reflect is the simplest possible fix.","shortMessageHtmlLink":"go-fuzz-build: do not instrument package reflect"}},{"before":null,"after":"71c5acc2da39cf546e1cdd241138f13fa5bc07b6","ref":"refs/heads/josh/fix-reflect-m1","pushedAt":"2023-10-19T01:06:41.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"josharian","name":"Josh Bleecher Snyder","path":"/josharian","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/67496?s=80&v=4"},"commit":{"message":"go-fuzz-build: do not instrument package reflect\n\nThis is unfortunate, but it circumvents a build failure:\n\nfailed to execute go build: exit status 1\n# reflect\n/Users/josh/go/1.21/src/reflect/value.go:3958: misplaced compiler directive\n\nThe problem is that in this code:\n\n//go:nosplit\nfunc noescape(p unsafe.Pointer) unsafe.Pointer {\n\nThe nosplit gets separated from the func, and placed\nin the body of the function above it. Oops.\n\nWe could probably be more careful and make this work,\nbut the fix is non-obvious, and probably not even in this package.\n\nThis project is on life support.\nIgnoring reflect is the simplest possible fix.","shortMessageHtmlLink":"go-fuzz-build: do not instrument package reflect"}},{"before":"1d375ef9f9f6a788b005f3cc7a0b4f31e8693997","after":"95bc4d742dfadd5d3b07bd7ea7ba31a52de633ad","ref":"refs/heads/master","pushedAt":"2023-06-14T17:07:35.286Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"josharian","name":"Josh Bleecher Snyder","path":"/josharian","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/67496?s=80&v=4"},"commit":{"message":"README.md: using the `go install` instead of the `go get`\n\nsee https://go.dev/doc/go-get-install-deprecation","shortMessageHtmlLink":"README.md: using the go install instead of the go get"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAD8Q2hfwA","startCursor":null,"endCursor":null}},"title":"Activity ยท dvyukov/go-fuzz"}