[{"id":"11675924649","type":"IssueCommentEvent","actor":{"id":202547,"login":"orlp","display_login":"orlp","gravatar_id":"","url":"https://api.github.com/users/orlp","avatar_url":"https://avatars.githubusercontent.com/u/202547?"},"repo":{"id":842591053,"name":"eternal-io/museair","url":"https://api.github.com/repos/eternal-io/museair"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/eternal-io/museair/issues/3","repository_url":"https://api.github.com/repos/eternal-io/museair","labels_url":"https://api.github.com/repos/eternal-io/museair/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/eternal-io/museair/issues/3/comments","events_url":"https://api.github.com/repos/eternal-io/museair/issues/3/events","html_url":"https://github.com/eternal-io/museair/issues/3","id":4864760204,"node_id":"I_kwDOMjjrTc8AAAABIfZZjA","number":3,"title":"Seed-independent trivial collisions","user":{"login":"orlp","id":202547,"node_id":"MDQ6VXNlcjIwMjU0Nw==","avatar_url":"https://avatars.githubusercontent.com/u/202547?v=4","gravatar_id":"","url":"https://api.github.com/users/orlp","html_url":"https://github.com/orlp","followers_url":"https://api.github.com/users/orlp/followers","following_url":"https://api.github.com/users/orlp/following{/other_user}","gists_url":"https://api.github.com/users/orlp/gists{/gist_id}","starred_url":"https://api.github.com/users/orlp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/orlp/subscriptions","organizations_url":"https://api.github.com/users/orlp/orgs","repos_url":"https://api.github.com/users/orlp/repos","events_url":"https://api.github.com/users/orlp/events{/privacy}","received_events_url":"https://api.github.com/users/orlp/received_events","type":"User","user_view_type":"public","site_admin":false},"labels":[],"state":"open","locked":false,"assignees":[],"milestone":null,"comments":3,"created_at":"2026-07-12T00:29:52Z","updated_at":"2026-07-12T14:03:44Z","closed_at":null,"assignee":null,"active_lock_reason":null,"sub_issues_summary":{"total":0,"completed":0,"percent_completed":0},"issue_dependencies_summary":{"blocked_by":0,"total_blocked_by":0,"blocking":0,"total_blocking":0},"body":"Museair is vulnerable to seed-independent collisions which are very easy to generate:\n\n```rust\nconst CONSTANT: [u64; 8] = [\n    0x5ae31e589c56e17a, 0x96d7bb04e64f6da9, 0x7ab1006b26f9eb64, 0x21233394220b8457,\n    0x047cb9557c9f3b43, 0xd24f2590c0bcee28, 0x33ea8f71bb6016d8, 0xb5d2697595d0a01f,\n];\n\nfn wmul(a: u64, b: u64) -> (u64, u64) {\n    let m = (a as u128) * (b as u128);\n    (m as u64, (m >> 64) as u64)\n}\n\nfn load64(b: &[u8], k: usize) -> u64 {\n    u64::from_le_bytes(b[k..k + 8].try_into().unwrap())\n}\n\nfn forward(u: u64, v: u64) -> (u64, u64) {\n    let (lo0, hi0) = wmul(CONSTANT[4] ^ u, CONSTANT[5]);\n    let (lo1, hi1) = wmul(CONSTANT[6] ^ v, CONSTANT[7]);\n    (lo0 ^ hi1, lo1 ^ hi0)\n}\n\nfn force_collide(m1: &[u8; 32], m2: &mut [u8; 32]) {\n    // Calculate forward update.\n    let (a1, b1) = forward(load64(m1, 16), load64(m1, 24));\n    let (a2, b2) = forward(load64(m2, 16), load64(m2, 24));\n    \n    // Solve cancellation.\n    let (p, q) = (load64(m1, 0) ^ a1 ^ a2, load64(m1, 8) ^ b1 ^ b2);\n    m2[0..8].copy_from_slice(&p.to_le_bytes());\n    m2[8..16].copy_from_slice(&q.to_le_bytes());\n}\n\nfn main() {\n    let m1 = *b\"hellothisisjustanarbitrarystring\";\n    let mut m2 = *b\"wewillmodifythisstringtocollide!\";\n    force_collide(&m1, &mut m2);\n    assert!(m1 != m2);\n    assert!(museair::hash(&m1, 0) == museair::hash(&m2, 0));\n    assert!(museair::hash(&m1, 0xdeadbeef) == museair::hash(&m2, 0xdeadbeef));\n}\n```","reactions":{"url":"https://api.github.com/repos/eternal-io/museair/issues/3/reactions","total_count":1,"+1":0,"-1":0,"laugh":1,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/eternal-io/museair/issues/3/timeline","performed_via_github_app":null,"state_reason":"reopened","pinned_comment":null},"comment":{"url":"https://api.github.com/repos/eternal-io/museair/issues/comments/4951457129","html_url":"https://github.com/eternal-io/museair/issues/3#issuecomment-4951457129","issue_url":"https://api.github.com/repos/eternal-io/museair/issues/3","id":4951457129,"node_id":"IC_kwDOMjjrTc8AAAABJyE9aQ","user":{"login":"orlp","id":202547,"node_id":"MDQ6VXNlcjIwMjU0Nw==","avatar_url":"https://avatars.githubusercontent.com/u/202547?v=4","gravatar_id":"","url":"https://api.github.com/users/orlp","html_url":"https://github.com/orlp","followers_url":"https://api.github.com/users/orlp/followers","following_url":"https://api.github.com/users/orlp/following{/other_user}","gists_url":"https://api.github.com/users/orlp/gists{/gist_id}","starred_url":"https://api.github.com/users/orlp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/orlp/subscriptions","organizations_url":"https://api.github.com/users/orlp/orgs","repos_url":"https://api.github.com/users/orlp/repos","events_url":"https://api.github.com/users/orlp/events{/privacy}","received_events_url":"https://api.github.com/users/orlp/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2026-07-12T14:03:15Z","updated_at":"2026-07-12T14:03:44Z","body":"If you know the seed, non-cryptographic hashes typically just completely fall apart. I think that's fine. However that does mean you need to protect the seed.\n\nI consider three attacker models relevant for non-cryptographic hashes:\n\n 1. Full oracle output, meaning you get to see the output hash for attacker-constructed input. Ideally you're secure against this but I doubt any non-cryptographic hash function is particularly strong against it. I have little confidence museair is secure in this model.\n 2. Side-channel information, for example being unable to see the output hash but being able to see if two strings collide or not. I think this is a reasonable attacker model that you should protect against, I have broken hashes in the past under this model, e.g. ahash: https://github.com/tkaitchuck/aHash/issues/163.\n 3. Zero information, that is, no seed-independent collisions. IMO you should always be secure against this.\n\n\nI find the way museair derives its secret state from `seed` in a very weak and non-mixed way sketchy against side-channel information. It's easy to cancel the state so it's just three repetitions of `seed & (a, b)`, and I wouldn't be surprised if a seed-recovery attack is possible because of that.","pin":null,"reactions":{"url":"https://api.github.com/repos/eternal-io/museair/issues/comments/4951457129/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}},"public":true,"created_at":"2026-07-12T14:03:15Z"},{"id":"14824152053","type":"DeleteEvent","actor":{"id":285977,"login":"jfalcou","display_login":"jfalcou","gravatar_id":"","url":"https://api.github.com/users/jfalcou","avatar_url":"https://avatars.githubusercontent.com/u/285977?"},"repo":{"id":165122254,"name":"jfalcou/tts","url":"https://api.github.com/repos/jfalcou/tts"},"payload":{"ref":"129/flaky-as_value","ref_type":"branch","full_ref":"refs/heads/129/flaky-as_value","pusher_type":"user"},"public":true,"created_at":"2026-07-12T13:53:49Z"},{"id":"14824151332","type":"PushEvent","actor":{"id":285977,"login":"jfalcou","display_login":"jfalcou","gravatar_id":"","url":"https://api.github.com/users/jfalcou","avatar_url":"https://avatars.githubusercontent.com/u/285977?"},"repo":{"id":165122254,"name":"jfalcou/tts","url":"https://api.github.com/repos/jfalcou/tts"},"payload":{"repository_id":165122254,"push_id":37114183511,"ref":"refs/heads/main","head":"5594fc08faa5c70ee5f52ec5139f1643fb412566","before":"514bd43506fcddb435ad32c52759ed7ec231bd32"},"public":true,"created_at":"2026-07-12T13:53:47Z"},{"id":"11675765424","type":"PullRequestEvent","actor":{"id":285977,"login":"jfalcou","display_login":"jfalcou","gravatar_id":"","url":"https://api.github.com/users/jfalcou","avatar_url":"https://avatars.githubusercontent.com/u/285977?"},"repo":{"id":165122254,"name":"jfalcou/tts","url":"https://api.github.com/repos/jfalcou/tts"},"payload":{"action":"merged","number":147,"pull_request":{"url":"https://api.github.com/repos/jfalcou/tts/pulls/147","id":4039115936,"number":147,"head":{"ref":"129/flaky-as_value","sha":"c432050c5bd09d31273864ca8e8e2b12cc8eb673","repo":{"id":165122254,"url":"https://api.github.com/repos/jfalcou/tts","name":"tts"}},"base":{"ref":"main","sha":"514bd43506fcddb435ad32c52759ed7ec231bd32","repo":{"id":165122254,"url":"https://api.github.com/repos/jfalcou/tts","name":"tts"}}}},"public":true,"created_at":"2026-07-12T13:53:47Z"},{"id":"14823794331","type":"PushEvent","actor":{"id":285977,"login":"jfalcou","display_login":"jfalcou","gravatar_id":"","url":"https://api.github.com/users/jfalcou","avatar_url":"https://avatars.githubusercontent.com/u/285977?"},"repo":{"id":165122254,"name":"jfalcou/tts","url":"https://api.github.com/repos/jfalcou/tts"},"payload":{"repository_id":165122254,"push_id":37113825938,"ref":"refs/heads/129/flaky-as_value","head":"c432050c5bd09d31273864ca8e8e2b12cc8eb673","before":"9f841a45616d75333c2b4f599ec0a2ec3a9454ba"},"public":true,"created_at":"2026-07-12T13:46:48Z"},{"id":"11675611911","type":"PullRequestEvent","actor":{"id":285977,"login":"jfalcou","display_login":"jfalcou","gravatar_id":"","url":"https://api.github.com/users/jfalcou","avatar_url":"https://avatars.githubusercontent.com/u/285977?"},"repo":{"id":165122254,"name":"jfalcou/tts","url":"https://api.github.com/repos/jfalcou/tts"},"payload":{"action":"opened","number":147,"pull_request":{"url":"https://api.github.com/repos/jfalcou/tts/pulls/147","id":4039115936,"number":147,"head":{"ref":"129/flaky-as_value","sha":"c432050c5bd09d31273864ca8e8e2b12cc8eb673","repo":{"id":165122254,"url":"https://api.github.com/repos/jfalcou/tts","name":"tts"}},"base":{"ref":"main","sha":"514bd43506fcddb435ad32c52759ed7ec231bd32","repo":{"id":165122254,"url":"https://api.github.com/repos/jfalcou/tts","name":"tts"}}}},"public":true,"created_at":"2026-07-12T13:44:33Z"},{"id":"14823666283","type":"CreateEvent","actor":{"id":285977,"login":"jfalcou","display_login":"jfalcou","gravatar_id":"","url":"https://api.github.com/users/jfalcou","avatar_url":"https://avatars.githubusercontent.com/u/285977?"},"repo":{"id":165122254,"name":"jfalcou/tts","url":"https://api.github.com/repos/jfalcou/tts"},"payload":{"ref":"129/flaky-as_value","ref_type":"branch","full_ref":"refs/heads/129/flaky-as_value","master_branch":"main","description":"Tiny Test System","pusher_type":"user"},"public":true,"created_at":"2026-07-12T13:44:24Z"},{"id":"14822805903","type":"DeleteEvent","actor":{"id":285977,"login":"jfalcou","display_login":"jfalcou","gravatar_id":"","url":"https://api.github.com/users/jfalcou","avatar_url":"https://avatars.githubusercontent.com/u/285977?"},"repo":{"id":165122254,"name":"jfalcou/tts","url":"https://api.github.com/repos/jfalcou/tts"},"payload":{"ref":"129/flaky-as_value","ref_type":"branch","full_ref":"refs/heads/129/flaky-as_value","pusher_type":"user"},"public":true,"created_at":"2026-07-12T13:28:31Z"},{"id":"11675344572","type":"PullRequestEvent","actor":{"id":285977,"login":"jfalcou","display_login":"jfalcou","gravatar_id":"","url":"https://api.github.com/users/jfalcou","avatar_url":"https://avatars.githubusercontent.com/u/285977?"},"repo":{"id":165122254,"name":"jfalcou/tts","url":"https://api.github.com/repos/jfalcou/tts"},"payload":{"action":"merged","number":146,"pull_request":{"url":"https://api.github.com/repos/jfalcou/tts/pulls/146","id":4039035416,"number":146,"head":{"ref":"129/flaky-as_value","sha":"a8cadbef85a068819e18583aa980e9af0b312296","repo":{"id":165122254,"url":"https://api.github.com/repos/jfalcou/tts","name":"tts"}},"base":{"ref":"main","sha":"34dfbb9626e31090a299ba6704c0e4dd31d2e7ac","repo":{"id":165122254,"url":"https://api.github.com/repos/jfalcou/tts","name":"tts"}}}},"public":true,"created_at":"2026-07-12T13:28:28Z"},{"id":"11675344504","type":"IssuesEvent","actor":{"id":285977,"login":"jfalcou","display_login":"jfalcou","gravatar_id":"","url":"https://api.github.com/users/jfalcou","avatar_url":"https://avatars.githubusercontent.com/u/285977?"},"repo":{"id":165122254,"name":"jfalcou/tts","url":"https://api.github.com/repos/jfalcou/tts"},"payload":{"action":"closed","issue":{"url":"https://api.github.com/repos/jfalcou/tts/issues/129","repository_url":"https://api.github.com/repos/jfalcou/tts","labels_url":"https://api.github.com/repos/jfalcou/tts/issues/129/labels{/name}","comments_url":"https://api.github.com/repos/jfalcou/tts/issues/129/comments","events_url":"https://api.github.com/repos/jfalcou/tts/issues/129/events","html_url":"https://github.com/jfalcou/tts/issues/129","id":4008409055,"node_id":"I_kwDOCdeQzs7u63ff","number":129,"title":"as_value extension point is flaky","user":{"login":"jfalcou","id":285977,"node_id":"MDQ6VXNlcjI4NTk3Nw==","avatar_url":"https://avatars.githubusercontent.com/u/285977?v=4","gravatar_id":"","url":"https://api.github.com/users/jfalcou","html_url":"https://github.com/jfalcou","followers_url":"https://api.github.com/users/jfalcou/followers","following_url":"https://api.github.com/users/jfalcou/following{/other_user}","gists_url":"https://api.github.com/users/jfalcou/gists{/gist_id}","starred_url":"https://api.github.com/users/jfalcou/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/jfalcou/subscriptions","organizations_url":"https://api.github.com/users/jfalcou/orgs","repos_url":"https://api.github.com/users/jfalcou/repos","events_url":"https://api.github.com/users/jfalcou/events{/privacy}","received_events_url":"https://api.github.com/users/jfalcou/received_events","type":"User","user_view_type":"public","site_admin":false},"labels":[],"state":"closed","locked":false,"assignees":[],"milestone":null,"comments":1,"created_at":"2026-03-01T22:12:12Z","updated_at":"2026-07-12T13:28:29Z","closed_at":"2026-07-12T13:28:29Z","assignee":null,"active_lock_reason":null,"sub_issues_summary":{"total":0,"completed":0,"percent_completed":0},"issue_dependencies_summary":{"blocked_by":0,"total_blocked_by":0,"blocking":0,"total_blocking":0},"body":"Some scenario requries pre-defintion, then including TTS","reactions":{"url":"https://api.github.com/repos/jfalcou/tts/issues/129/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/jfalcou/tts/issues/129/timeline","performed_via_github_app":null,"state_reason":"completed","pinned_comment":null}},"public":true,"created_at":"2026-07-12T13:28:30Z"},{"id":"14822804725","type":"PushEvent","actor":{"id":285977,"login":"jfalcou","display_login":"jfalcou","gravatar_id":"","url":"https://api.github.com/users/jfalcou","avatar_url":"https://avatars.githubusercontent.com/u/285977?"},"repo":{"id":165122254,"name":"jfalcou/tts","url":"https://api.github.com/repos/jfalcou/tts"},"payload":{"repository_id":165122254,"push_id":37112834484,"ref":"refs/heads/main","head":"514bd43506fcddb435ad32c52759ed7ec231bd32","before":"34dfbb9626e31090a299ba6704c0e4dd31d2e7ac"},"public":true,"created_at":"2026-07-12T13:28:29Z"},{"id":"14822359878","type":"PushEvent","actor":{"id":285977,"login":"jfalcou","display_login":"jfalcou","gravatar_id":"","url":"https://api.github.com/users/jfalcou","avatar_url":"https://avatars.githubusercontent.com/u/285977?"},"repo":{"id":165122254,"name":"jfalcou/tts","url":"https://api.github.com/repos/jfalcou/tts"},"payload":{"repository_id":165122254,"push_id":37112388717,"ref":"refs/heads/129/flaky-as_value","head":"a8cadbef85a068819e18583aa980e9af0b312296","before":"b3483e3c89bbe34603935f03f5c33c95b557f7bd"},"public":true,"created_at":"2026-07-12T13:19:53Z"},{"id":"11675087177","type":"PullRequestEvent","actor":{"id":285977,"login":"jfalcou","display_login":"jfalcou","gravatar_id":"","url":"https://api.github.com/users/jfalcou","avatar_url":"https://avatars.githubusercontent.com/u/285977?"},"repo":{"id":165122254,"name":"jfalcou/tts","url":"https://api.github.com/repos/jfalcou/tts"},"payload":{"action":"opened","number":146,"pull_request":{"url":"https://api.github.com/repos/jfalcou/tts/pulls/146","id":4039035416,"number":146,"head":{"ref":"129/flaky-as_value","sha":"a8cadbef85a068819e18583aa980e9af0b312296","repo":{"id":165122254,"url":"https://api.github.com/repos/jfalcou/tts","name":"tts"}},"base":{"ref":"main","sha":"34dfbb9626e31090a299ba6704c0e4dd31d2e7ac","repo":{"id":165122254,"url":"https://api.github.com/repos/jfalcou/tts","name":"tts"}}}},"public":true,"created_at":"2026-07-12T13:12:45Z"},{"id":"14821963950","type":"CreateEvent","actor":{"id":285977,"login":"jfalcou","display_login":"jfalcou","gravatar_id":"","url":"https://api.github.com/users/jfalcou","avatar_url":"https://avatars.githubusercontent.com/u/285977?"},"repo":{"id":165122254,"name":"jfalcou/tts","url":"https://api.github.com/repos/jfalcou/tts"},"payload":{"ref":"129/flaky-as_value","ref_type":"branch","full_ref":"refs/heads/129/flaky-as_value","master_branch":"main","description":"Tiny Test System","pusher_type":"user"},"public":true,"created_at":"2026-07-12T13:12:35Z"},{"id":"11662315744","type":"IssuesEvent","actor":{"id":202547,"login":"orlp","display_login":"orlp","gravatar_id":"","url":"https://api.github.com/users/orlp","avatar_url":"https://avatars.githubusercontent.com/u/202547?"},"repo":{"id":842591053,"name":"eternal-io/museair","url":"https://api.github.com/repos/eternal-io/museair"},"payload":{"action":"opened","issue":{"url":"https://api.github.com/repos/eternal-io/museair/issues/3","repository_url":"https://api.github.com/repos/eternal-io/museair","labels_url":"https://api.github.com/repos/eternal-io/museair/issues/3/labels{/name}","comments_url":"https://api.github.com/repos/eternal-io/museair/issues/3/comments","events_url":"https://api.github.com/repos/eternal-io/museair/issues/3/events","html_url":"https://github.com/eternal-io/museair/issues/3","id":4864760204,"node_id":"I_kwDOMjjrTc8AAAABIfZZjA","number":3,"title":"Seed-independent trivial collisions","user":{"login":"orlp","id":202547,"node_id":"MDQ6VXNlcjIwMjU0Nw==","avatar_url":"https://avatars.githubusercontent.com/u/202547?v=4","gravatar_id":"","url":"https://api.github.com/users/orlp","html_url":"https://github.com/orlp","followers_url":"https://api.github.com/users/orlp/followers","following_url":"https://api.github.com/users/orlp/following{/other_user}","gists_url":"https://api.github.com/users/orlp/gists{/gist_id}","starred_url":"https://api.github.com/users/orlp/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/orlp/subscriptions","organizations_url":"https://api.github.com/users/orlp/orgs","repos_url":"https://api.github.com/users/orlp/repos","events_url":"https://api.github.com/users/orlp/events{/privacy}","received_events_url":"https://api.github.com/users/orlp/received_events","type":"User","user_view_type":"public","site_admin":false},"labels":[],"state":"open","locked":false,"assignees":[],"milestone":null,"comments":3,"created_at":"2026-07-12T00:29:52Z","updated_at":"2026-07-12T14:03:44Z","closed_at":null,"assignee":null,"active_lock_reason":null,"sub_issues_summary":{"total":0,"completed":0,"percent_completed":0},"issue_dependencies_summary":{"blocked_by":0,"total_blocked_by":0,"blocking":0,"total_blocking":0},"body":"Museair is vulnerable to seed-independent collisions which are very easy to generate:\n\n```rust\nconst CONSTANT: [u64; 8] = [\n    0x5ae31e589c56e17a, 0x96d7bb04e64f6da9, 0x7ab1006b26f9eb64, 0x21233394220b8457,\n    0x047cb9557c9f3b43, 0xd24f2590c0bcee28, 0x33ea8f71bb6016d8, 0xb5d2697595d0a01f,\n];\n\nfn wmul(a: u64, b: u64) -> (u64, u64) {\n    let m = (a as u128) * (b as u128);\n    (m as u64, (m >> 64) as u64)\n}\n\nfn load64(b: &[u8], k: usize) -> u64 {\n    u64::from_le_bytes(b[k..k + 8].try_into().unwrap())\n}\n\nfn forward(u: u64, v: u64) -> (u64, u64) {\n    let (lo0, hi0) = wmul(CONSTANT[4] ^ u, CONSTANT[5]);\n    let (lo1, hi1) = wmul(CONSTANT[6] ^ v, CONSTANT[7]);\n    (lo0 ^ hi1, lo1 ^ hi0)\n}\n\nfn force_collide(m1: &[u8; 32], m2: &mut [u8; 32]) {\n    // Calculate forward update.\n    let (a1, b1) = forward(load64(m1, 16), load64(m1, 24));\n    let (a2, b2) = forward(load64(m2, 16), load64(m2, 24));\n    \n    // Solve cancellation.\n    let (p, q) = (load64(m1, 0) ^ a1 ^ a2, load64(m1, 8) ^ b1 ^ b2);\n    m2[0..8].copy_from_slice(&p.to_le_bytes());\n    m2[8..16].copy_from_slice(&q.to_le_bytes());\n}\n\nfn main() {\n    let m1 = *b\"hellothisisjustanarbitrarystring\";\n    let mut m2 = *b\"wewillmodifythisstringtocollide!\";\n    force_collide(&m1, &mut m2);\n    assert!(m1 != m2);\n    assert!(museair::hash(&m1, 0) == museair::hash(&m2, 0));\n    assert!(museair::hash(&m1, 0xdeadbeef) == museair::hash(&m2, 0xdeadbeef));\n}\n```","reactions":{"url":"https://api.github.com/repos/eternal-io/museair/issues/3/reactions","total_count":1,"+1":0,"-1":0,"laugh":1,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/eternal-io/museair/issues/3/timeline","performed_via_github_app":null,"state_reason":"reopened","pinned_comment":null}},"public":true,"created_at":"2026-07-12T00:29:53Z"},{"id":"11656802193","type":"IssueCommentEvent","actor":{"id":1159508,"login":"rabauke","display_login":"rabauke","gravatar_id":"","url":"https://api.github.com/users/rabauke","avatar_url":"https://avatars.githubusercontent.com/u/1159508?"},"repo":{"id":2670882,"name":"rabauke/trng4","url":"https://api.github.com/repos/rabauke/trng4"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rabauke/trng4/issues/36","repository_url":"https://api.github.com/repos/rabauke/trng4","labels_url":"https://api.github.com/repos/rabauke/trng4/issues/36/labels{/name}","comments_url":"https://api.github.com/repos/rabauke/trng4/issues/36/comments","events_url":"https://api.github.com/repos/rabauke/trng4/issues/36/events","html_url":"https://github.com/rabauke/trng4/issues/36","id":4860510841,"node_id":"I_kwDOACjBIs8AAAABIbWCeQ","number":36,"title":"v4.28 source tarball checksum has been changed","user":{"login":"daeho-ro","id":40587651,"node_id":"MDQ6VXNlcjQwNTg3NjUx","avatar_url":"https://avatars.githubusercontent.com/u/40587651?v=4","gravatar_id":"","url":"https://api.github.com/users/daeho-ro","html_url":"https://github.com/daeho-ro","followers_url":"https://api.github.com/users/daeho-ro/followers","following_url":"https://api.github.com/users/daeho-ro/following{/other_user}","gists_url":"https://api.github.com/users/daeho-ro/gists{/gist_id}","starred_url":"https://api.github.com/users/daeho-ro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/daeho-ro/subscriptions","organizations_url":"https://api.github.com/users/daeho-ro/orgs","repos_url":"https://api.github.com/users/daeho-ro/repos","events_url":"https://api.github.com/users/daeho-ro/events{/privacy}","received_events_url":"https://api.github.com/users/daeho-ro/received_events","type":"User","user_view_type":"public","site_admin":false},"labels":[{"id":11491091179,"node_id":"LA_kwDOACjBIs8AAAACrOwi6w","url":"https://api.github.com/repos/rabauke/trng4/labels/question","name":"question","color":"e9cba1","default":true,"description":""}],"state":"open","locked":false,"assignees":[{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false}],"milestone":null,"comments":5,"created_at":"2026-07-11T04:23:03Z","updated_at":"2026-07-12T03:42:15Z","closed_at":null,"assignee":{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false},"active_lock_reason":null,"sub_issues_summary":{"total":0,"completed":0,"percent_completed":0},"issue_dependencies_summary":{"blocked_by":0,"total_blocked_by":0,"blocking":0,"total_blocking":0},"body":"Hello, this is a homebrew maintainer.\n\nI have noticed that the checksum of v4.28 source tarball has been changed.\n\n```diff\n-760dfd6a67e10c325ec1c5b61f1ec55a7c1081ed9384066926d0d1df3018787d\n+50432094f8a4b079bcf1c4a9075691c34f4ed5be54835d7ea1a38ccb00ebc89e\n```\n\nI think homebrew bumped the formula before you finished to fix the source tarball.\n\nIs this change intended and current tarball fine?\n\nIf so, I will update it. Can you check?\nThanks,","reactions":{"url":"https://api.github.com/repos/rabauke/trng4/issues/36/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rabauke/trng4/issues/36/timeline","performed_via_github_app":null,"state_reason":null,"pinned_comment":null},"comment":{"url":"https://api.github.com/repos/rabauke/trng4/issues/comments/4948241704","html_url":"https://github.com/rabauke/trng4/issues/36#issuecomment-4948241704","issue_url":"https://api.github.com/repos/rabauke/trng4/issues/36","id":4948241704,"node_id":"IC_kwDOACjBIs8AAAABJvAtKA","user":{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2026-07-11T18:14:47Z","updated_at":"2026-07-11T18:14:47Z","body":"@daeho-ro I can confirm that `50432094f8a4b079bcf1c4a9075691c34f4ed5be54835d7ea1a38ccb00ebc89e` is the correct checksum, i.e., the check sum that you should compare to. As explained above, I revised the 4.28 release once what caused a change of the checksum of the source tar ball.","pin":null,"reactions":{"url":"https://api.github.com/repos/rabauke/trng4/issues/comments/4948241704/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}},"public":true,"created_at":"2026-07-11T18:14:47Z"},{"id":"11647503320","type":"IssueCommentEvent","actor":{"id":1159508,"login":"rabauke","display_login":"rabauke","gravatar_id":"","url":"https://api.github.com/users/rabauke","avatar_url":"https://avatars.githubusercontent.com/u/1159508?"},"repo":{"id":2670882,"name":"rabauke/trng4","url":"https://api.github.com/repos/rabauke/trng4"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rabauke/trng4/issues/36","repository_url":"https://api.github.com/repos/rabauke/trng4","labels_url":"https://api.github.com/repos/rabauke/trng4/issues/36/labels{/name}","comments_url":"https://api.github.com/repos/rabauke/trng4/issues/36/comments","events_url":"https://api.github.com/repos/rabauke/trng4/issues/36/events","html_url":"https://github.com/rabauke/trng4/issues/36","id":4860510841,"node_id":"I_kwDOACjBIs8AAAABIbWCeQ","number":36,"title":"v4.28 source tarball checksum has been changed","user":{"login":"daeho-ro","id":40587651,"node_id":"MDQ6VXNlcjQwNTg3NjUx","avatar_url":"https://avatars.githubusercontent.com/u/40587651?v=4","gravatar_id":"","url":"https://api.github.com/users/daeho-ro","html_url":"https://github.com/daeho-ro","followers_url":"https://api.github.com/users/daeho-ro/followers","following_url":"https://api.github.com/users/daeho-ro/following{/other_user}","gists_url":"https://api.github.com/users/daeho-ro/gists{/gist_id}","starred_url":"https://api.github.com/users/daeho-ro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/daeho-ro/subscriptions","organizations_url":"https://api.github.com/users/daeho-ro/orgs","repos_url":"https://api.github.com/users/daeho-ro/repos","events_url":"https://api.github.com/users/daeho-ro/events{/privacy}","received_events_url":"https://api.github.com/users/daeho-ro/received_events","type":"User","user_view_type":"public","site_admin":false},"labels":[{"id":11491091179,"node_id":"LA_kwDOACjBIs8AAAACrOwi6w","url":"https://api.github.com/repos/rabauke/trng4/labels/question","name":"question","color":"e9cba1","default":true,"description":""}],"state":"open","locked":false,"assignees":[{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false}],"milestone":null,"comments":5,"created_at":"2026-07-11T04:23:03Z","updated_at":"2026-07-12T03:42:15Z","closed_at":null,"assignee":{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false},"active_lock_reason":null,"sub_issues_summary":{"total":0,"completed":0,"percent_completed":0},"issue_dependencies_summary":{"blocked_by":0,"total_blocked_by":0,"blocking":0,"total_blocking":0},"body":"Hello, this is a homebrew maintainer.\n\nI have noticed that the checksum of v4.28 source tarball has been changed.\n\n```diff\n-760dfd6a67e10c325ec1c5b61f1ec55a7c1081ed9384066926d0d1df3018787d\n+50432094f8a4b079bcf1c4a9075691c34f4ed5be54835d7ea1a38ccb00ebc89e\n```\n\nI think homebrew bumped the formula before you finished to fix the source tarball.\n\nIs this change intended and current tarball fine?\n\nIf so, I will update it. Can you check?\nThanks,","reactions":{"url":"https://api.github.com/repos/rabauke/trng4/issues/36/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rabauke/trng4/issues/36/timeline","performed_via_github_app":null,"state_reason":null,"pinned_comment":null},"comment":{"url":"https://api.github.com/repos/rabauke/trng4/issues/comments/4944019461","html_url":"https://github.com/rabauke/trng4/issues/36#issuecomment-4944019461","issue_url":"https://api.github.com/repos/rabauke/trng4/issues/36","id":4944019461,"node_id":"IC_kwDOACjBIs8AAAABJq_ABQ","user":{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2026-07-11T08:44:10Z","updated_at":"2026-07-11T08:44:10Z","body":"- Which source file are you referring to, the source zip file or the source tar.gz file as generated by Github?\n- Which algorithm do you use to calculate the checksum?\n- When has the change of the check sum been observed for the first time?\n\nAny change after Feb 26 should be considered as unintended and might hint to an issue.","pin":null,"reactions":{"url":"https://api.github.com/repos/rabauke/trng4/issues/comments/4944019461/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}},"public":true,"created_at":"2026-07-11T08:44:10Z"},{"id":"11647365941","type":"IssuesEvent","actor":{"id":1159508,"login":"rabauke","display_login":"rabauke","gravatar_id":"","url":"https://api.github.com/users/rabauke","avatar_url":"https://avatars.githubusercontent.com/u/1159508?"},"repo":{"id":2670882,"name":"rabauke/trng4","url":"https://api.github.com/repos/rabauke/trng4"},"payload":{"action":"labeled","issue":{"url":"https://api.github.com/repos/rabauke/trng4/issues/36","repository_url":"https://api.github.com/repos/rabauke/trng4","labels_url":"https://api.github.com/repos/rabauke/trng4/issues/36/labels{/name}","comments_url":"https://api.github.com/repos/rabauke/trng4/issues/36/comments","events_url":"https://api.github.com/repos/rabauke/trng4/issues/36/events","html_url":"https://github.com/rabauke/trng4/issues/36","id":4860510841,"node_id":"I_kwDOACjBIs8AAAABIbWCeQ","number":36,"title":"v4.28 source tarball checksum has been changed","user":{"login":"daeho-ro","id":40587651,"node_id":"MDQ6VXNlcjQwNTg3NjUx","avatar_url":"https://avatars.githubusercontent.com/u/40587651?v=4","gravatar_id":"","url":"https://api.github.com/users/daeho-ro","html_url":"https://github.com/daeho-ro","followers_url":"https://api.github.com/users/daeho-ro/followers","following_url":"https://api.github.com/users/daeho-ro/following{/other_user}","gists_url":"https://api.github.com/users/daeho-ro/gists{/gist_id}","starred_url":"https://api.github.com/users/daeho-ro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/daeho-ro/subscriptions","organizations_url":"https://api.github.com/users/daeho-ro/orgs","repos_url":"https://api.github.com/users/daeho-ro/repos","events_url":"https://api.github.com/users/daeho-ro/events{/privacy}","received_events_url":"https://api.github.com/users/daeho-ro/received_events","type":"User","user_view_type":"public","site_admin":false},"labels":[{"id":11491091179,"node_id":"LA_kwDOACjBIs8AAAACrOwi6w","url":"https://api.github.com/repos/rabauke/trng4/labels/question","name":"question","color":"e9cba1","default":true,"description":""}],"state":"open","locked":false,"assignees":[{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false}],"milestone":null,"comments":5,"created_at":"2026-07-11T04:23:03Z","updated_at":"2026-07-12T03:42:15Z","closed_at":null,"assignee":{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false},"active_lock_reason":null,"sub_issues_summary":{"total":0,"completed":0,"percent_completed":0},"issue_dependencies_summary":{"blocked_by":0,"total_blocked_by":0,"blocking":0,"total_blocking":0},"body":"Hello, this is a homebrew maintainer.\n\nI have noticed that the checksum of v4.28 source tarball has been changed.\n\n```diff\n-760dfd6a67e10c325ec1c5b61f1ec55a7c1081ed9384066926d0d1df3018787d\n+50432094f8a4b079bcf1c4a9075691c34f4ed5be54835d7ea1a38ccb00ebc89e\n```\n\nI think homebrew bumped the formula before you finished to fix the source tarball.\n\nIs this change intended and current tarball fine?\n\nIf so, I will update it. Can you check?\nThanks,","reactions":{"url":"https://api.github.com/repos/rabauke/trng4/issues/36/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rabauke/trng4/issues/36/timeline","performed_via_github_app":null,"state_reason":null,"pinned_comment":null},"label":{"id":11491091179,"node_id":"LA_kwDOACjBIs8AAAACrOwi6w","url":"https://api.github.com/repos/rabauke/trng4/labels/question","name":"question","color":"e9cba1","default":true,"description":""},"labels":[{"id":11491091179,"node_id":"LA_kwDOACjBIs8AAAACrOwi6w","url":"https://api.github.com/repos/rabauke/trng4/labels/question","name":"question","color":"e9cba1","default":true,"description":""}]},"public":true,"created_at":"2026-07-11T08:36:21Z"},{"id":"11647360644","type":"IssuesEvent","actor":{"id":1159508,"login":"rabauke","display_login":"rabauke","gravatar_id":"","url":"https://api.github.com/users/rabauke","avatar_url":"https://avatars.githubusercontent.com/u/1159508?"},"repo":{"id":2670882,"name":"rabauke/trng4","url":"https://api.github.com/repos/rabauke/trng4"},"payload":{"action":"unlabeled","issue":{"url":"https://api.github.com/repos/rabauke/trng4/issues/36","repository_url":"https://api.github.com/repos/rabauke/trng4","labels_url":"https://api.github.com/repos/rabauke/trng4/issues/36/labels{/name}","comments_url":"https://api.github.com/repos/rabauke/trng4/issues/36/comments","events_url":"https://api.github.com/repos/rabauke/trng4/issues/36/events","html_url":"https://github.com/rabauke/trng4/issues/36","id":4860510841,"node_id":"I_kwDOACjBIs8AAAABIbWCeQ","number":36,"title":"v4.28 source tarball checksum has been changed","user":{"login":"daeho-ro","id":40587651,"node_id":"MDQ6VXNlcjQwNTg3NjUx","avatar_url":"https://avatars.githubusercontent.com/u/40587651?v=4","gravatar_id":"","url":"https://api.github.com/users/daeho-ro","html_url":"https://github.com/daeho-ro","followers_url":"https://api.github.com/users/daeho-ro/followers","following_url":"https://api.github.com/users/daeho-ro/following{/other_user}","gists_url":"https://api.github.com/users/daeho-ro/gists{/gist_id}","starred_url":"https://api.github.com/users/daeho-ro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/daeho-ro/subscriptions","organizations_url":"https://api.github.com/users/daeho-ro/orgs","repos_url":"https://api.github.com/users/daeho-ro/repos","events_url":"https://api.github.com/users/daeho-ro/events{/privacy}","received_events_url":"https://api.github.com/users/daeho-ro/received_events","type":"User","user_view_type":"public","site_admin":false},"labels":[{"id":11491091179,"node_id":"LA_kwDOACjBIs8AAAACrOwi6w","url":"https://api.github.com/repos/rabauke/trng4/labels/question","name":"question","color":"e9cba1","default":true,"description":""}],"state":"open","locked":false,"assignees":[{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false}],"milestone":null,"comments":5,"created_at":"2026-07-11T04:23:03Z","updated_at":"2026-07-12T03:42:15Z","closed_at":null,"assignee":{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false},"active_lock_reason":null,"sub_issues_summary":{"total":0,"completed":0,"percent_completed":0},"issue_dependencies_summary":{"blocked_by":0,"total_blocked_by":0,"blocking":0,"total_blocking":0},"body":"Hello, this is a homebrew maintainer.\n\nI have noticed that the checksum of v4.28 source tarball has been changed.\n\n```diff\n-760dfd6a67e10c325ec1c5b61f1ec55a7c1081ed9384066926d0d1df3018787d\n+50432094f8a4b079bcf1c4a9075691c34f4ed5be54835d7ea1a38ccb00ebc89e\n```\n\nI think homebrew bumped the formula before you finished to fix the source tarball.\n\nIs this change intended and current tarball fine?\n\nIf so, I will update it. Can you check?\nThanks,","reactions":{"url":"https://api.github.com/repos/rabauke/trng4/issues/36/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rabauke/trng4/issues/36/timeline","performed_via_github_app":null,"state_reason":null,"pinned_comment":null},"label":null,"labels":[]},"public":true,"created_at":"2026-07-11T08:36:02Z"},{"id":"11647357494","type":"IssuesEvent","actor":{"id":1159508,"login":"rabauke","display_login":"rabauke","gravatar_id":"","url":"https://api.github.com/users/rabauke","avatar_url":"https://avatars.githubusercontent.com/u/1159508?"},"repo":{"id":2670882,"name":"rabauke/trng4","url":"https://api.github.com/repos/rabauke/trng4"},"payload":{"action":"labeled","issue":{"url":"https://api.github.com/repos/rabauke/trng4/issues/36","repository_url":"https://api.github.com/repos/rabauke/trng4","labels_url":"https://api.github.com/repos/rabauke/trng4/issues/36/labels{/name}","comments_url":"https://api.github.com/repos/rabauke/trng4/issues/36/comments","events_url":"https://api.github.com/repos/rabauke/trng4/issues/36/events","html_url":"https://github.com/rabauke/trng4/issues/36","id":4860510841,"node_id":"I_kwDOACjBIs8AAAABIbWCeQ","number":36,"title":"v4.28 source tarball checksum has been changed","user":{"login":"daeho-ro","id":40587651,"node_id":"MDQ6VXNlcjQwNTg3NjUx","avatar_url":"https://avatars.githubusercontent.com/u/40587651?v=4","gravatar_id":"","url":"https://api.github.com/users/daeho-ro","html_url":"https://github.com/daeho-ro","followers_url":"https://api.github.com/users/daeho-ro/followers","following_url":"https://api.github.com/users/daeho-ro/following{/other_user}","gists_url":"https://api.github.com/users/daeho-ro/gists{/gist_id}","starred_url":"https://api.github.com/users/daeho-ro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/daeho-ro/subscriptions","organizations_url":"https://api.github.com/users/daeho-ro/orgs","repos_url":"https://api.github.com/users/daeho-ro/repos","events_url":"https://api.github.com/users/daeho-ro/events{/privacy}","received_events_url":"https://api.github.com/users/daeho-ro/received_events","type":"User","user_view_type":"public","site_admin":false},"labels":[{"id":11491091179,"node_id":"LA_kwDOACjBIs8AAAACrOwi6w","url":"https://api.github.com/repos/rabauke/trng4/labels/question","name":"question","color":"e9cba1","default":true,"description":""}],"state":"open","locked":false,"assignees":[{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false}],"milestone":null,"comments":5,"created_at":"2026-07-11T04:23:03Z","updated_at":"2026-07-12T03:42:15Z","closed_at":null,"assignee":{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false},"active_lock_reason":null,"sub_issues_summary":{"total":0,"completed":0,"percent_completed":0},"issue_dependencies_summary":{"blocked_by":0,"total_blocked_by":0,"blocking":0,"total_blocking":0},"body":"Hello, this is a homebrew maintainer.\n\nI have noticed that the checksum of v4.28 source tarball has been changed.\n\n```diff\n-760dfd6a67e10c325ec1c5b61f1ec55a7c1081ed9384066926d0d1df3018787d\n+50432094f8a4b079bcf1c4a9075691c34f4ed5be54835d7ea1a38ccb00ebc89e\n```\n\nI think homebrew bumped the formula before you finished to fix the source tarball.\n\nIs this change intended and current tarball fine?\n\nIf so, I will update it. Can you check?\nThanks,","reactions":{"url":"https://api.github.com/repos/rabauke/trng4/issues/36/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rabauke/trng4/issues/36/timeline","performed_via_github_app":null,"state_reason":null,"pinned_comment":null},"label":{"id":2466937056,"node_id":"MDU6TGFiZWwyNDY2OTM3MDU2","url":"https://api.github.com/repos/rabauke/trng4/labels/bug","name":"bug","color":"79db72","default":true,"description":""},"labels":[{"id":2466937056,"node_id":"MDU6TGFiZWwyNDY2OTM3MDU2","url":"https://api.github.com/repos/rabauke/trng4/labels/bug","name":"bug","color":"79db72","default":true,"description":""}]},"public":true,"created_at":"2026-07-11T08:35:51Z"},{"id":"11647331612","type":"IssuesEvent","actor":{"id":1159508,"login":"rabauke","display_login":"rabauke","gravatar_id":"","url":"https://api.github.com/users/rabauke","avatar_url":"https://avatars.githubusercontent.com/u/1159508?"},"repo":{"id":2670882,"name":"rabauke/trng4","url":"https://api.github.com/repos/rabauke/trng4"},"payload":{"action":"assigned","issue":{"url":"https://api.github.com/repos/rabauke/trng4/issues/36","repository_url":"https://api.github.com/repos/rabauke/trng4","labels_url":"https://api.github.com/repos/rabauke/trng4/issues/36/labels{/name}","comments_url":"https://api.github.com/repos/rabauke/trng4/issues/36/comments","events_url":"https://api.github.com/repos/rabauke/trng4/issues/36/events","html_url":"https://github.com/rabauke/trng4/issues/36","id":4860510841,"node_id":"I_kwDOACjBIs8AAAABIbWCeQ","number":36,"title":"v4.28 source tarball checksum has been changed","user":{"login":"daeho-ro","id":40587651,"node_id":"MDQ6VXNlcjQwNTg3NjUx","avatar_url":"https://avatars.githubusercontent.com/u/40587651?v=4","gravatar_id":"","url":"https://api.github.com/users/daeho-ro","html_url":"https://github.com/daeho-ro","followers_url":"https://api.github.com/users/daeho-ro/followers","following_url":"https://api.github.com/users/daeho-ro/following{/other_user}","gists_url":"https://api.github.com/users/daeho-ro/gists{/gist_id}","starred_url":"https://api.github.com/users/daeho-ro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/daeho-ro/subscriptions","organizations_url":"https://api.github.com/users/daeho-ro/orgs","repos_url":"https://api.github.com/users/daeho-ro/repos","events_url":"https://api.github.com/users/daeho-ro/events{/privacy}","received_events_url":"https://api.github.com/users/daeho-ro/received_events","type":"User","user_view_type":"public","site_admin":false},"labels":[{"id":11491091179,"node_id":"LA_kwDOACjBIs8AAAACrOwi6w","url":"https://api.github.com/repos/rabauke/trng4/labels/question","name":"question","color":"e9cba1","default":true,"description":""}],"state":"open","locked":false,"assignees":[{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false}],"milestone":null,"comments":5,"created_at":"2026-07-11T04:23:03Z","updated_at":"2026-07-12T03:42:15Z","closed_at":null,"assignee":{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false},"active_lock_reason":null,"sub_issues_summary":{"total":0,"completed":0,"percent_completed":0},"issue_dependencies_summary":{"blocked_by":0,"total_blocked_by":0,"blocking":0,"total_blocking":0},"body":"Hello, this is a homebrew maintainer.\n\nI have noticed that the checksum of v4.28 source tarball has been changed.\n\n```diff\n-760dfd6a67e10c325ec1c5b61f1ec55a7c1081ed9384066926d0d1df3018787d\n+50432094f8a4b079bcf1c4a9075691c34f4ed5be54835d7ea1a38ccb00ebc89e\n```\n\nI think homebrew bumped the formula before you finished to fix the source tarball.\n\nIs this change intended and current tarball fine?\n\nIf so, I will update it. Can you check?\nThanks,","reactions":{"url":"https://api.github.com/repos/rabauke/trng4/issues/36/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rabauke/trng4/issues/36/timeline","performed_via_github_app":null,"state_reason":null,"pinned_comment":null},"assignee":{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false},"assignees":[{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false}]},"public":true,"created_at":"2026-07-11T08:34:17Z"},{"id":"11647330094","type":"IssueCommentEvent","actor":{"id":1159508,"login":"rabauke","display_login":"rabauke","gravatar_id":"","url":"https://api.github.com/users/rabauke","avatar_url":"https://avatars.githubusercontent.com/u/1159508?"},"repo":{"id":2670882,"name":"rabauke/trng4","url":"https://api.github.com/repos/rabauke/trng4"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rabauke/trng4/issues/36","repository_url":"https://api.github.com/repos/rabauke/trng4","labels_url":"https://api.github.com/repos/rabauke/trng4/issues/36/labels{/name}","comments_url":"https://api.github.com/repos/rabauke/trng4/issues/36/comments","events_url":"https://api.github.com/repos/rabauke/trng4/issues/36/events","html_url":"https://github.com/rabauke/trng4/issues/36","id":4860510841,"node_id":"I_kwDOACjBIs8AAAABIbWCeQ","number":36,"title":"v4.28 source tarball checksum has been changed","user":{"login":"daeho-ro","id":40587651,"node_id":"MDQ6VXNlcjQwNTg3NjUx","avatar_url":"https://avatars.githubusercontent.com/u/40587651?v=4","gravatar_id":"","url":"https://api.github.com/users/daeho-ro","html_url":"https://github.com/daeho-ro","followers_url":"https://api.github.com/users/daeho-ro/followers","following_url":"https://api.github.com/users/daeho-ro/following{/other_user}","gists_url":"https://api.github.com/users/daeho-ro/gists{/gist_id}","starred_url":"https://api.github.com/users/daeho-ro/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/daeho-ro/subscriptions","organizations_url":"https://api.github.com/users/daeho-ro/orgs","repos_url":"https://api.github.com/users/daeho-ro/repos","events_url":"https://api.github.com/users/daeho-ro/events{/privacy}","received_events_url":"https://api.github.com/users/daeho-ro/received_events","type":"User","user_view_type":"public","site_admin":false},"labels":[{"id":11491091179,"node_id":"LA_kwDOACjBIs8AAAACrOwi6w","url":"https://api.github.com/repos/rabauke/trng4/labels/question","name":"question","color":"e9cba1","default":true,"description":""}],"state":"open","locked":false,"assignees":[{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false}],"milestone":null,"comments":5,"created_at":"2026-07-11T04:23:03Z","updated_at":"2026-07-12T03:42:15Z","closed_at":null,"assignee":{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false},"active_lock_reason":null,"sub_issues_summary":{"total":0,"completed":0,"percent_completed":0},"issue_dependencies_summary":{"blocked_by":0,"total_blocked_by":0,"blocking":0,"total_blocking":0},"body":"Hello, this is a homebrew maintainer.\n\nI have noticed that the checksum of v4.28 source tarball has been changed.\n\n```diff\n-760dfd6a67e10c325ec1c5b61f1ec55a7c1081ed9384066926d0d1df3018787d\n+50432094f8a4b079bcf1c4a9075691c34f4ed5be54835d7ea1a38ccb00ebc89e\n```\n\nI think homebrew bumped the formula before you finished to fix the source tarball.\n\nIs this change intended and current tarball fine?\n\nIf so, I will update it. Can you check?\nThanks,","reactions":{"url":"https://api.github.com/repos/rabauke/trng4/issues/36/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rabauke/trng4/issues/36/timeline","performed_via_github_app":null,"state_reason":null,"pinned_comment":null},"comment":{"url":"https://api.github.com/repos/rabauke/trng4/issues/comments/4943928325","html_url":"https://github.com/rabauke/trng4/issues/36#issuecomment-4943928325","issue_url":"https://api.github.com/repos/rabauke/trng4/issues/36","id":4943928325,"node_id":"IC_kwDOACjBIs8AAAABJq5cBQ","user":{"login":"rabauke","id":1159508,"node_id":"MDQ6VXNlcjExNTk1MDg=","avatar_url":"https://avatars.githubusercontent.com/u/1159508?v=4","gravatar_id":"","url":"https://api.github.com/users/rabauke","html_url":"https://github.com/rabauke","followers_url":"https://api.github.com/users/rabauke/followers","following_url":"https://api.github.com/users/rabauke/following{/other_user}","gists_url":"https://api.github.com/users/rabauke/gists{/gist_id}","starred_url":"https://api.github.com/users/rabauke/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/rabauke/subscriptions","organizations_url":"https://api.github.com/users/rabauke/orgs","repos_url":"https://api.github.com/users/rabauke/repos","events_url":"https://api.github.com/users/rabauke/events{/privacy}","received_events_url":"https://api.github.com/users/rabauke/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2026-07-11T08:34:10Z","updated_at":"2026-07-11T08:34:10Z","body":"Hello,\n\nCannot answer this with confidence. I assume that the following happened:\n\n- After commit 953a3379570273a9560af29577ea8843601820d6 I created the 4.28 release on Feb 25.\n- Within a day I realized that there was a severe typo in almost every header file, which I fixed in 691817a4a0331421776e7f00efa9fbe81554da86.\n- A revised 4.28 release was created on Feb 26.\n\nI am aware that I should have created a new version with an increased version number instead of replacing the 4.28 release. Sorry, if this caused some inconveniences. \n\n@daeho-ro How have the check sums given above been created?","pin":null,"reactions":{"url":"https://api.github.com/repos/rabauke/trng4/issues/comments/4943928325/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}},"public":true,"created_at":"2026-07-11T08:34:10Z"},{"id":"11641483461","type":"WatchEvent","actor":{"id":918661,"login":"vittorioromeo","display_login":"vittorioromeo","gravatar_id":"","url":"https://api.github.com/users/vittorioromeo","avatar_url":"https://avatars.githubusercontent.com/u/918661?"},"repo":{"id":663608516,"name":"corporateshark/lightweightvk","url":"https://api.github.com/repos/corporateshark/lightweightvk"},"payload":{"action":"started"},"public":true,"created_at":"2026-07-11T02:09:45Z"},{"id":"11629308108","type":"IssueCommentEvent","actor":{"id":215756,"login":"robertmaynard","display_login":"robertmaynard","gravatar_id":"","url":"https://api.github.com/users/robertmaynard","avatar_url":"https://avatars.githubusercontent.com/u/215756?"},"repo":{"id":362502909,"name":"rapidsai/rapids-cmake","url":"https://api.github.com/repos/rapidsai/rapids-cmake"},"payload":{"action":"created","issue":{"url":"https://api.github.com/repos/rapidsai/rapids-cmake/issues/1052","repository_url":"https://api.github.com/repos/rapidsai/rapids-cmake","labels_url":"https://api.github.com/repos/rapidsai/rapids-cmake/issues/1052/labels{/name}","comments_url":"https://api.github.com/repos/rapidsai/rapids-cmake/issues/1052/comments","events_url":"https://api.github.com/repos/rapidsai/rapids-cmake/issues/1052/events","html_url":"https://github.com/rapidsai/rapids-cmake/pull/1052","id":4856347589,"node_id":"PR_kwDOFZta_c7wPAgX","number":1052,"title":"Fix errors introduced by CMake 4.4","user":{"login":"KyleFromNVIDIA","id":156017155,"node_id":"U_kgDOCUyiAw","avatar_url":"https://avatars.githubusercontent.com/u/156017155?v=4","gravatar_id":"","url":"https://api.github.com/users/KyleFromNVIDIA","html_url":"https://github.com/KyleFromNVIDIA","followers_url":"https://api.github.com/users/KyleFromNVIDIA/followers","following_url":"https://api.github.com/users/KyleFromNVIDIA/following{/other_user}","gists_url":"https://api.github.com/users/KyleFromNVIDIA/gists{/gist_id}","starred_url":"https://api.github.com/users/KyleFromNVIDIA/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/KyleFromNVIDIA/subscriptions","organizations_url":"https://api.github.com/users/KyleFromNVIDIA/orgs","repos_url":"https://api.github.com/users/KyleFromNVIDIA/repos","events_url":"https://api.github.com/users/KyleFromNVIDIA/events{/privacy}","received_events_url":"https://api.github.com/users/KyleFromNVIDIA/received_events","type":"User","user_view_type":"public","site_admin":false},"labels":[{"id":2955511150,"node_id":"MDU6TGFiZWwyOTU1NTExMTUw","url":"https://api.github.com/repos/rapidsai/rapids-cmake/labels/bug","name":"bug","color":"d73a4a","default":true,"description":"Something isn't working"},{"id":2955511174,"node_id":"MDU6TGFiZWwyOTU1NTExMTc0","url":"https://api.github.com/repos/rapidsai/rapids-cmake/labels/non-breaking","name":"non-breaking","color":"5319E7","default":false,"description":"Introduces a non-breaking change"}],"state":"open","locked":false,"assignees":[],"milestone":null,"comments":2,"created_at":"2026-07-10T15:25:36Z","updated_at":"2026-07-10T18:46:33Z","closed_at":null,"assignee":null,"issue_field_values":[],"type":null,"active_lock_reason":null,"draft":false,"pull_request":{"url":"https://api.github.com/repos/rapidsai/rapids-cmake/pulls/1052","html_url":"https://github.com/rapidsai/rapids-cmake/pull/1052","diff_url":"https://github.com/rapidsai/rapids-cmake/pull/1052.diff","patch_url":"https://github.com/rapidsai/rapids-cmake/pull/1052.patch","merged_at":null},"body":"## Description\r\n* CMake 4.4 changed `-Wno-dev` to `-Wno-author`. Update expected warning messages accordingly.\r\n\r\n## Checklist\r\n- [ ] I am familiar with the [Contributing Guidelines](https://github.com/rapidsai/rapids-cmake/blob/HEAD/CONTRIBUTING.md).\r\n- [ ] New or existing tests cover these changes.\r\n- [ ] The documentation is up to date with these changes.\r\n- [ ] The `cmake-format.json` is up to date with these changes.\r\n- [ ] I have added new files under rapids-cmake/\r\n   - [ ] I have added include guards (`include_guard(GLOBAL)`)\r\n   - [ ] I have added the associated docs/ rst file and update the api.rst\r\n","reactions":{"url":"https://api.github.com/repos/rapidsai/rapids-cmake/issues/1052/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"timeline_url":"https://api.github.com/repos/rapidsai/rapids-cmake/issues/1052/timeline","performed_via_github_app":null,"state_reason":null},"comment":{"url":"https://api.github.com/repos/rapidsai/rapids-cmake/issues/comments/4938416798","html_url":"https://github.com/rapidsai/rapids-cmake/pull/1052#issuecomment-4938416798","issue_url":"https://api.github.com/repos/rapidsai/rapids-cmake/issues/1052","id":4938416798,"node_id":"IC_kwDOFZta_c8AAAABJlpCng","user":{"login":"robertmaynard","id":215756,"node_id":"MDQ6VXNlcjIxNTc1Ng==","avatar_url":"https://avatars.githubusercontent.com/u/215756?v=4","gravatar_id":"","url":"https://api.github.com/users/robertmaynard","html_url":"https://github.com/robertmaynard","followers_url":"https://api.github.com/users/robertmaynard/followers","following_url":"https://api.github.com/users/robertmaynard/following{/other_user}","gists_url":"https://api.github.com/users/robertmaynard/gists{/gist_id}","starred_url":"https://api.github.com/users/robertmaynard/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robertmaynard/subscriptions","organizations_url":"https://api.github.com/users/robertmaynard/orgs","repos_url":"https://api.github.com/users/robertmaynard/repos","events_url":"https://api.github.com/users/robertmaynard/events{/privacy}","received_events_url":"https://api.github.com/users/robertmaynard/received_events","type":"User","user_view_type":"public","site_admin":false},"created_at":"2026-07-10T18:38:05Z","updated_at":"2026-07-10T18:38:05Z","body":"We can either admin merge this, or just not run these tests when CMake is >= 4.4","reactions":{"url":"https://api.github.com/repos/rapidsai/rapids-cmake/issues/comments/4938416798/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"performed_via_github_app":null}},"public":true,"created_at":"2026-07-10T18:38:05Z","org":{"id":43887749,"login":"rapidsai","gravatar_id":"","url":"https://api.github.com/orgs/rapidsai","avatar_url":"https://avatars.githubusercontent.com/u/43887749?"}},{"id":"11629291307","type":"PullRequestReviewEvent","actor":{"id":215756,"login":"robertmaynard","display_login":"robertmaynard","gravatar_id":"","url":"https://api.github.com/users/robertmaynard","avatar_url":"https://avatars.githubusercontent.com/u/215756?"},"repo":{"id":362502909,"name":"rapidsai/rapids-cmake","url":"https://api.github.com/repos/rapidsai/rapids-cmake"},"payload":{"review":{"id":4674094660,"node_id":"PRR_kwDOFZta_c8AAAABFpkGRA","user":{"login":"robertmaynard","id":215756,"node_id":"MDQ6VXNlcjIxNTc1Ng==","avatar_url":"https://avatars.githubusercontent.com/u/215756?v=4","gravatar_id":"","url":"https://api.github.com/users/robertmaynard","html_url":"https://github.com/robertmaynard","followers_url":"https://api.github.com/users/robertmaynard/followers","following_url":"https://api.github.com/users/robertmaynard/following{/other_user}","gists_url":"https://api.github.com/users/robertmaynard/gists{/gist_id}","starred_url":"https://api.github.com/users/robertmaynard/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robertmaynard/subscriptions","organizations_url":"https://api.github.com/users/robertmaynard/orgs","repos_url":"https://api.github.com/users/robertmaynard/repos","events_url":"https://api.github.com/users/robertmaynard/events{/privacy}","received_events_url":"https://api.github.com/users/robertmaynard/received_events","type":"User","user_view_type":"public","site_admin":false},"body":null,"commit_id":"c6b1568d8a9f16d7e81b65023d2f3bd736b8f78d","state":"approved","html_url":"https://github.com/rapidsai/rapids-cmake/pull/1052#pullrequestreview-4674094660","pull_request_url":"https://api.github.com/repos/rapidsai/rapids-cmake/pulls/1052","_links":{"html":{"href":"https://github.com/rapidsai/rapids-cmake/pull/1052#pullrequestreview-4674094660"},"pull_request":{"href":"https://api.github.com/repos/rapidsai/rapids-cmake/pulls/1052"}},"submitted_at":"2026-07-10T18:37:38Z","updated_at":"2026-07-10T18:37:38Z"},"pull_request":{"url":"https://api.github.com/repos/rapidsai/rapids-cmake/pulls/1052","id":4030466071,"number":1052,"head":{"ref":"fix-cmake-4.4-errors","sha":"c6b1568d8a9f16d7e81b65023d2f3bd736b8f78d","repo":{"id":742049350,"url":"https://api.github.com/repos/KyleFromNVIDIA/rapids-cmake","name":"rapids-cmake"}},"base":{"ref":"main","sha":"07fdc0ce2137a1da84fd3bc183d43be2198f34ee","repo":{"id":362502909,"url":"https://api.github.com/repos/rapidsai/rapids-cmake","name":"rapids-cmake"}}},"action":"created"},"public":true,"created_at":"2026-07-10T18:37:39Z","org":{"id":43887749,"login":"rapidsai","gravatar_id":"","url":"https://api.github.com/orgs/rapidsai","avatar_url":"https://avatars.githubusercontent.com/u/43887749?"}},{"id":"11629282639","type":"PullRequestReviewEvent","actor":{"id":215756,"login":"robertmaynard","display_login":"robertmaynard","gravatar_id":"","url":"https://api.github.com/users/robertmaynard","avatar_url":"https://avatars.githubusercontent.com/u/215756?"},"repo":{"id":362502909,"name":"rapidsai/rapids-cmake","url":"https://api.github.com/repos/rapidsai/rapids-cmake"},"payload":{"review":{"id":4674093235,"node_id":"PRR_kwDOFZta_c8AAAABFpkAsw","user":{"login":"robertmaynard","id":215756,"node_id":"MDQ6VXNlcjIxNTc1Ng==","avatar_url":"https://avatars.githubusercontent.com/u/215756?v=4","gravatar_id":"","url":"https://api.github.com/users/robertmaynard","html_url":"https://github.com/robertmaynard","followers_url":"https://api.github.com/users/robertmaynard/followers","following_url":"https://api.github.com/users/robertmaynard/following{/other_user}","gists_url":"https://api.github.com/users/robertmaynard/gists{/gist_id}","starred_url":"https://api.github.com/users/robertmaynard/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robertmaynard/subscriptions","organizations_url":"https://api.github.com/users/robertmaynard/orgs","repos_url":"https://api.github.com/users/robertmaynard/repos","events_url":"https://api.github.com/users/robertmaynard/events{/privacy}","received_events_url":"https://api.github.com/users/robertmaynard/received_events","type":"User","user_view_type":"public","site_admin":false},"body":null,"commit_id":"0b27d95d66819b56329a69af5140bfe5ce697a26","state":"approved","html_url":"https://github.com/rapidsai/rapids-cmake/pull/1053#pullrequestreview-4674093235","pull_request_url":"https://api.github.com/repos/rapidsai/rapids-cmake/pulls/1053","_links":{"html":{"href":"https://github.com/rapidsai/rapids-cmake/pull/1053#pullrequestreview-4674093235"},"pull_request":{"href":"https://api.github.com/repos/rapidsai/rapids-cmake/pulls/1053"}},"submitted_at":"2026-07-10T18:37:23Z","updated_at":"2026-07-10T18:37:23Z"},"pull_request":{"url":"https://api.github.com/repos/rapidsai/rapids-cmake/pulls/1053","id":4031169928,"number":1053,"head":{"ref":"cmake-pin","sha":"0b27d95d66819b56329a69af5140bfe5ce697a26","repo":{"id":742049350,"url":"https://api.github.com/repos/KyleFromNVIDIA/rapids-cmake","name":"rapids-cmake"}},"base":{"ref":"main","sha":"07fdc0ce2137a1da84fd3bc183d43be2198f34ee","repo":{"id":362502909,"url":"https://api.github.com/repos/rapidsai/rapids-cmake","name":"rapids-cmake"}}},"action":"created"},"public":true,"created_at":"2026-07-10T18:37:25Z","org":{"id":43887749,"login":"rapidsai","gravatar_id":"","url":"https://api.github.com/orgs/rapidsai","avatar_url":"https://avatars.githubusercontent.com/u/43887749?"}},{"id":"11627180972","type":"PullRequestReviewEvent","actor":{"id":215756,"login":"robertmaynard","display_login":"robertmaynard","gravatar_id":"","url":"https://api.github.com/users/robertmaynard","avatar_url":"https://avatars.githubusercontent.com/u/215756?"},"repo":{"id":296416761,"name":"NVIDIA/cccl","url":"https://api.github.com/repos/NVIDIA/cccl"},"payload":{"review":{"id":4673710582,"node_id":"PRR_kwDOEar1-c8AAAABFpMp9g","user":{"login":"robertmaynard","id":215756,"node_id":"MDQ6VXNlcjIxNTc1Ng==","avatar_url":"https://avatars.githubusercontent.com/u/215756?v=4","gravatar_id":"","url":"https://api.github.com/users/robertmaynard","html_url":"https://github.com/robertmaynard","followers_url":"https://api.github.com/users/robertmaynard/followers","following_url":"https://api.github.com/users/robertmaynard/following{/other_user}","gists_url":"https://api.github.com/users/robertmaynard/gists{/gist_id}","starred_url":"https://api.github.com/users/robertmaynard/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robertmaynard/subscriptions","organizations_url":"https://api.github.com/users/robertmaynard/orgs","repos_url":"https://api.github.com/users/robertmaynard/repos","events_url":"https://api.github.com/users/robertmaynard/events{/privacy}","received_events_url":"https://api.github.com/users/robertmaynard/received_events","type":"User","user_view_type":"public","site_admin":false},"body":null,"commit_id":"e8ea8f2653c1225334a3eb5dbb715164e4144683","state":"approved","html_url":"https://github.com/NVIDIA/cccl/pull/9645#pullrequestreview-4673710582","pull_request_url":"https://api.github.com/repos/NVIDIA/cccl/pulls/9645","_links":{"html":{"href":"https://github.com/NVIDIA/cccl/pull/9645#pullrequestreview-4673710582"},"pull_request":{"href":"https://api.github.com/repos/NVIDIA/cccl/pulls/9645"}},"submitted_at":"2026-07-10T17:42:44Z","updated_at":"2026-07-10T17:42:44Z"},"pull_request":{"url":"https://api.github.com/repos/NVIDIA/cccl/pulls/9645","id":3964726679,"number":9645,"head":{"ref":"jacobf/2026-06-13/mgmn-reduce","sha":"e8ea8f2653c1225334a3eb5dbb715164e4144683","repo":{"id":881963439,"url":"https://api.github.com/repos/Jacobfaib/cccl","name":"cccl"}},"base":{"ref":"main","sha":"0fa6cea52725d546f08451a331ee2c9725b0d006","repo":{"id":296416761,"url":"https://api.github.com/repos/NVIDIA/cccl","name":"cccl"}}},"action":"created"},"public":true,"created_at":"2026-07-10T17:42:44Z","org":{"id":1728152,"login":"NVIDIA","gravatar_id":"","url":"https://api.github.com/orgs/NVIDIA","avatar_url":"https://avatars.githubusercontent.com/u/1728152?"}},{"id":"11626711842","type":"PullRequestReviewEvent","actor":{"id":215756,"login":"robertmaynard","display_login":"robertmaynard","gravatar_id":"","url":"https://api.github.com/users/robertmaynard","avatar_url":"https://avatars.githubusercontent.com/u/215756?"},"repo":{"id":296416761,"name":"NVIDIA/cccl","url":"https://api.github.com/repos/NVIDIA/cccl"},"payload":{"review":{"id":4673623788,"node_id":"PRR_kwDOEar1-c8AAAABFpHW7A","user":{"login":"robertmaynard","id":215756,"node_id":"MDQ6VXNlcjIxNTc1Ng==","avatar_url":"https://avatars.githubusercontent.com/u/215756?v=4","gravatar_id":"","url":"https://api.github.com/users/robertmaynard","html_url":"https://github.com/robertmaynard","followers_url":"https://api.github.com/users/robertmaynard/followers","following_url":"https://api.github.com/users/robertmaynard/following{/other_user}","gists_url":"https://api.github.com/users/robertmaynard/gists{/gist_id}","starred_url":"https://api.github.com/users/robertmaynard/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robertmaynard/subscriptions","organizations_url":"https://api.github.com/users/robertmaynard/orgs","repos_url":"https://api.github.com/users/robertmaynard/repos","events_url":"https://api.github.com/users/robertmaynard/events{/privacy}","received_events_url":"https://api.github.com/users/robertmaynard/received_events","type":"User","user_view_type":"public","site_admin":false},"body":null,"commit_id":"fa2a21e027ad02c70c7f02b558471b3a1866b722","state":"commented","html_url":"https://github.com/NVIDIA/cccl/pull/9645#pullrequestreview-4673623788","pull_request_url":"https://api.github.com/repos/NVIDIA/cccl/pulls/9645","_links":{"html":{"href":"https://github.com/NVIDIA/cccl/pull/9645#pullrequestreview-4673623788"},"pull_request":{"href":"https://api.github.com/repos/NVIDIA/cccl/pulls/9645"}},"submitted_at":"2026-07-10T17:30:30Z","updated_at":"2026-07-10T17:30:30Z"},"pull_request":{"url":"https://api.github.com/repos/NVIDIA/cccl/pulls/9645","id":3964726679,"number":9645,"head":{"ref":"jacobf/2026-06-13/mgmn-reduce","sha":"e8ea8f2653c1225334a3eb5dbb715164e4144683","repo":{"id":881963439,"url":"https://api.github.com/repos/Jacobfaib/cccl","name":"cccl"}},"base":{"ref":"main","sha":"0fa6cea52725d546f08451a331ee2c9725b0d006","repo":{"id":296416761,"url":"https://api.github.com/repos/NVIDIA/cccl","name":"cccl"}}},"action":"created"},"public":true,"created_at":"2026-07-10T17:30:31Z","org":{"id":1728152,"login":"NVIDIA","gravatar_id":"","url":"https://api.github.com/orgs/NVIDIA","avatar_url":"https://avatars.githubusercontent.com/u/1728152?"}},{"id":"11626708151","type":"PullRequestReviewCommentEvent","actor":{"id":215756,"login":"robertmaynard","display_login":"robertmaynard","gravatar_id":"","url":"https://api.github.com/users/robertmaynard","avatar_url":"https://avatars.githubusercontent.com/u/215756?"},"repo":{"id":296416761,"name":"NVIDIA/cccl","url":"https://api.github.com/repos/NVIDIA/cccl"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/NVIDIA/cccl/pulls/comments/3560816999","pull_request_review_id":4673623788,"id":3560816999,"node_id":"PRRC_kwDOEar1-c7UPcFn","diff_hunk":"@@ -59,10 +59,21 @@ endif()\n \n function(cudax_add_multi_gpu_test sub_prefix target_name_var source)\n   cmake_path(GET source STEM filename)\n-  cudax_add_catch2_test(\"${target_name_var}\" \"multi_gpu.${sub_prefix}.${filename}\" ${source} ${ARGN})\n-  set(${target_name_var} ${test_target} PARENT_SCOPE)\n+  cudax_add_catch2_test(\"${target_name_var}\" \"multi_gpu.${sub_prefix}.${filename}\" \"${source}\" ${ARGN})\n+  target_include_directories(\n+    \"${${target_name_var}}\"\n+    PRIVATE \"${CMAKE_CURRENT_FUNCTION_LIST_DIR}/include\"\n+  )\n+  set(\"${target_name_var}\" \"${${target_name_var}}\" PARENT_SCOPE)\n+endfunction()\n+\n+function(cudax_add_multi_gpu_nccl_test sub_prefix target_name_var source)\n+  cudax_add_multi_gpu_test(\"${sub_prefix}\" \"${target_name_var}\" \"${source}\" ${ARGN})\n+  target_link_libraries(\"${${target_name_var}}\" PRIVATE NCCL::nccl)","path":"cudax/test/multi_gpu/CMakeLists.txt","commit_id":"fa2a21e027ad02c70c7f02b558471b3a1866b722","original_commit_id":"a3ca936cb7315a009eaa8b3e0d0f1f0303715c09","user":{"login":"robertmaynard","id":215756,"node_id":"MDQ6VXNlcjIxNTc1Ng==","avatar_url":"https://avatars.githubusercontent.com/u/215756?v=4","gravatar_id":"","url":"https://api.github.com/users/robertmaynard","html_url":"https://github.com/robertmaynard","followers_url":"https://api.github.com/users/robertmaynard/followers","following_url":"https://api.github.com/users/robertmaynard/following{/other_user}","gists_url":"https://api.github.com/users/robertmaynard/gists{/gist_id}","starred_url":"https://api.github.com/users/robertmaynard/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robertmaynard/subscriptions","organizations_url":"https://api.github.com/users/robertmaynard/orgs","repos_url":"https://api.github.com/users/robertmaynard/repos","events_url":"https://api.github.com/users/robertmaynard/events{/privacy}","received_events_url":"https://api.github.com/users/robertmaynard/received_events","type":"User","user_view_type":"public","site_admin":false},"body":"When that is a case we can have the function","created_at":"2026-07-10T17:30:25Z","updated_at":"2026-07-10T17:30:30Z","html_url":"https://github.com/NVIDIA/cccl/pull/9645#discussion_r3560816999","pull_request_url":"https://api.github.com/repos/NVIDIA/cccl/pulls/9645","_links":{"self":{"href":"https://api.github.com/repos/NVIDIA/cccl/pulls/comments/3560816999"},"html":{"href":"https://github.com/NVIDIA/cccl/pull/9645#discussion_r3560816999"},"pull_request":{"href":"https://api.github.com/repos/NVIDIA/cccl/pulls/9645"}},"reactions":{"url":"https://api.github.com/repos/NVIDIA/cccl/pulls/comments/3560816999/reactions","total_count":1,"+1":1,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"in_reply_to_id":3559942245,"original_position":16,"position":1,"subject_type":"line"},"pull_request":{"url":"https://api.github.com/repos/NVIDIA/cccl/pulls/9645","id":3964726679,"number":9645,"head":{"ref":"jacobf/2026-06-13/mgmn-reduce","sha":"e8ea8f2653c1225334a3eb5dbb715164e4144683","repo":{"id":881963439,"url":"https://api.github.com/repos/Jacobfaib/cccl","name":"cccl"}},"base":{"ref":"main","sha":"0fa6cea52725d546f08451a331ee2c9725b0d006","repo":{"id":296416761,"url":"https://api.github.com/repos/NVIDIA/cccl","name":"cccl"}}}},"public":true,"created_at":"2026-07-10T17:30:25Z","org":{"id":1728152,"login":"NVIDIA","gravatar_id":"","url":"https://api.github.com/orgs/NVIDIA","avatar_url":"https://avatars.githubusercontent.com/u/1728152?"}},{"id":"11626684428","type":"PullRequestReviewCommentEvent","actor":{"id":215756,"login":"robertmaynard","display_login":"robertmaynard","gravatar_id":"","url":"https://api.github.com/users/robertmaynard","avatar_url":"https://avatars.githubusercontent.com/u/215756?"},"repo":{"id":296416761,"name":"NVIDIA/cccl","url":"https://api.github.com/repos/NVIDIA/cccl"},"payload":{"action":"created","comment":{"url":"https://api.github.com/repos/NVIDIA/cccl/pulls/comments/3560812496","pull_request_review_id":4673623788,"id":3560812496,"node_id":"PRRC_kwDOEar1-c7UPa_Q","diff_hunk":"@@ -122,6 +122,6 @@ endmacro()\n \n macro(cccl_get_nccl)\n   list(APPEND CMAKE_MODULE_PATH \"${_cccl_find_module_dir}\")\n-  find_package(NCCL ${ARGV})\n+  find_package(NCCL ${ARGN})","path":"cmake/CCCLGetDependencies.cmake","commit_id":"e8ea8f2653c1225334a3eb5dbb715164e4144683","original_commit_id":"a3ca936cb7315a009eaa8b3e0d0f1f0303715c09","user":{"login":"robertmaynard","id":215756,"node_id":"MDQ6VXNlcjIxNTc1Ng==","avatar_url":"https://avatars.githubusercontent.com/u/215756?v=4","gravatar_id":"","url":"https://api.github.com/users/robertmaynard","html_url":"https://github.com/robertmaynard","followers_url":"https://api.github.com/users/robertmaynard/followers","following_url":"https://api.github.com/users/robertmaynard/following{/other_user}","gists_url":"https://api.github.com/users/robertmaynard/gists{/gist_id}","starred_url":"https://api.github.com/users/robertmaynard/starred{/owner}{/repo}","subscriptions_url":"https://api.github.com/users/robertmaynard/subscriptions","organizations_url":"https://api.github.com/users/robertmaynard/orgs","repos_url":"https://api.github.com/users/robertmaynard/repos","events_url":"https://api.github.com/users/robertmaynard/events{/privacy}","received_events_url":"https://api.github.com/users/robertmaynard/received_events","type":"User","user_view_type":"public","site_admin":false},"body":"Good point","created_at":"2026-07-10T17:29:51Z","updated_at":"2026-07-10T17:30:30Z","html_url":"https://github.com/NVIDIA/cccl/pull/9645#discussion_r3560812496","pull_request_url":"https://api.github.com/repos/NVIDIA/cccl/pulls/9645","_links":{"self":{"href":"https://api.github.com/repos/NVIDIA/cccl/pulls/comments/3560812496"},"html":{"href":"https://github.com/NVIDIA/cccl/pull/9645#discussion_r3560812496"},"pull_request":{"href":"https://api.github.com/repos/NVIDIA/cccl/pulls/9645"}},"reactions":{"url":"https://api.github.com/repos/NVIDIA/cccl/pulls/comments/3560812496/reactions","total_count":0,"+1":0,"-1":0,"laugh":0,"hooray":0,"confused":0,"heart":0,"rocket":0,"eyes":0},"in_reply_to_id":3559903342,"original_position":5,"position":5,"subject_type":"line"},"pull_request":{"url":"https://api.github.com/repos/NVIDIA/cccl/pulls/9645","id":3964726679,"number":9645,"head":{"ref":"jacobf/2026-06-13/mgmn-reduce","sha":"e8ea8f2653c1225334a3eb5dbb715164e4144683","repo":{"id":881963439,"url":"https://api.github.com/repos/Jacobfaib/cccl","name":"cccl"}},"base":{"ref":"main","sha":"0fa6cea52725d546f08451a331ee2c9725b0d006","repo":{"id":296416761,"url":"https://api.github.com/repos/NVIDIA/cccl","name":"cccl"}}}},"public":true,"created_at":"2026-07-10T17:29:51Z","org":{"id":1728152,"login":"NVIDIA","gravatar_id":"","url":"https://api.github.com/orgs/NVIDIA","avatar_url":"https://avatars.githubusercontent.com/u/1728152?"}}]