{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":426716366,"defaultBranch":"master","name":"ref-fvm","ownerLogin":"filecoin-project","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2021-11-10T17:34:10.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/22014611?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1716858385.0","currentOid":""},"activityList":{"items":[{"before":null,"after":"08172530984ce2e6ef5a035ddfd6bd69b3464fcb","ref":"refs/heads/rvagg/nlucic/niporep","pushedAt":"2024-05-28T01:06:25.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"rvagg","name":"Rod Vagg","path":"/rvagg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/495647?s=80&v=4"},"commit":{"message":"TEMP CARGO COMMIT","shortMessageHtmlLink":"TEMP CARGO COMMIT"}},{"before":"fe2665cd2d9fed97fd861d80c5cf68c608e42bf3","after":null,"ref":"refs/heads/shared-pairing","pushedAt":"2024-05-24T15:32:56.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"}},{"before":"31118cfad2e83dc3f6202f38ce7d96cd1c747aea","after":"206a772745978802b431821af481f4523ccf6d5f","ref":"refs/heads/master","pushedAt":"2024-05-24T15:32:55.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"},"commit":{"message":"fix: remove the pairing feature from fvm_shared (#2009)\n\nThe `pairing` feature from the `fvm_shared` crate isn't used. It causes\r\nproblems, as it forces the `subtle` dependency to v2.4.1, although the\r\nrest is happy to have v2.5.0.\r\n\r\nHere is a detailed dependency graph and issue outline:\r\n\r\n`fvm_shared` depends on `bls-signatures`.\r\nIn `bls-signatures` we depend on an old version (v0.11) of `hkdf`.\r\nThat version depends on `hmac` v0.11, which depends on `crypto-mac` v0.11.\r\n`crypto-mac` v0.11.0 depends on `subtle` v2. That is fine, it would\r\nautomatically select v2.5.0.\r\nThe problem is that `crypto-mac` v0.11.1 pins `subtle` to exactly v2.4,\r\ntherefore v2.5.0 won't be selected.\r\n\r\nThe obvious thing is to upgrade in`bls-signatures` the version of `hkdf`\r\nto the latest v0.12.\r\nThat would make it possible to use `subtle` v2.5.0.\r\nThe problem is that such an upgrade is not easily possible.\r\n`hkdf` v0.12 depends on a newer version v0.10 of the `sha2` crate.\r\nUpdating that breaks the `bls12_381` crate.\r\nThe reason is the current version v0.8.0 of `bls12_381` depends on an old\r\nversion v0.9 of the `digest` crate.\r\n\r\nThe obvious thing is to upgrade in `bls12_381` the version of `digest` to\r\nv0.10.\r\nThat would make it possible to get `hkdf` v0.12 built.\r\nBut such an upgrade is and open issue at\r\nhttps://github.com/zkcrypto/bls12_381/issues/102, which mentions that it's\r\nblocked on https://github.com/zkcrypto/bls12_381/pull/90.\r\nThat pull request is about updating do the hash-to-curve draft v16, currently\r\nit's using v12.\r\nWe use that code path in `bls-signatures`, else we wouldn't enable the\r\n`experimental` feature of `bls12_381`.\r\nSo it's even not clear if we'd want such a change to v16.","shortMessageHtmlLink":"fix: remove the pairing feature from fvm_shared (#2009)"}},{"before":"8a367f9f63ab398098e44365993b2cae636f7b70","after":"fe2665cd2d9fed97fd861d80c5cf68c608e42bf3","ref":"refs/heads/shared-pairing","pushedAt":"2024-05-24T10:46:24.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"vmx","name":"Volker Mische","path":"/vmx","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42839?s=80&v=4"},"commit":{"message":"fix: remove the pairing feature from fvm_shared\n\nThe `pairing` feature from the `fvm_shared` crate isn't used. It causes\nproblems, as it forces the `subtle` dependency to v2.4.1, although the\nrest is happy to have v2.5.0.\n\nHere is a detailed dependency graph and issue outline:\n\n`fvm_shared` depends on `bls-signatures`.\nIn `bls-signatures` we depend on an old version (v0.11) of `hkdf`.\nThat version depends on `hmac` v0.11, which depends on `crypto-mac` v0.11.\n`crypto-mac` v0.11.0 depends on `subtle` v2. That is fine, it would\nautomatically select v2.5.0.\nThe problem is that `crypto-mac` v0.11.1 pins `subtle` to exactly v2.4,\ntherefore v2.5.0 won't be selected.\n\nThe obvious thing is to upgrade in`bls-signatures` the version of `hkdf`\nto the latest v0.12.\nThat would make it possible to use `subtle` v2.5.0.\nThe problem is that such an upgrade is not easily possible.\n`hkdf` v0.12 depends on a newer version v0.10 of the `sha2` crate.\nUpdating that breaks the `bls12_381` crate.\nThe reason is the current version v0.8.0 of `bls12_381` depends on an old\nversion v0.9 of the `digest` crate.\n\nThe obvious thing is to upgrade in `bls12_381` the version of `digest` to\nv0.10.\nThat would make it possible to get `hkdf` v0.12 built.\nBut such an upgrade is and open issue at\nhttps://github.com/zkcrypto/bls12_381/issues/102, which mentions that it's\nblocked on https://github.com/zkcrypto/bls12_381/pull/90.\nThat pull request is about updating do the hash-to-curve draft v16, currently\nit's using v12.\nWe use that code path in `bls-signatures`, else we wouldn't enable the\n`experimental` feature of `bls12_381`.\nSo it's even not clear if we'd want such a change to v16.","shortMessageHtmlLink":"fix: remove the pairing feature from fvm_shared"}},{"before":null,"after":"8a367f9f63ab398098e44365993b2cae636f7b70","ref":"refs/heads/shared-pairing","pushedAt":"2024-05-24T10:26:35.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"vmx","name":"Volker Mische","path":"/vmx","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/42839?s=80&v=4"},"commit":{"message":"fix: remove the pairing feature from fvm_shared\n\nThe `pairing` feature from the `fvm_shared` crate isn't used. It causes\nproblems, as it forces the `subtle` dependency to v2.4.1, although the\nrest is happy to have v2.5.0.\n\nHere is a detailed dependency graph and issue outline:\n\n`fvm_shared` depends on `bls-signatures`.\nIn `bls-signatures` we depend on an old version (v0.11) of `hkdf`.\nThat version depends on `hmac` v0.11, which depends on `crypto-mac` v0.11.\n`crypto-mac` v0.11.0 depends on `subtle` v2. That is fine, it would\nautomatically select v2.5.0.\nThe problem is that `crypto-mac` v0.11.1 pins `subtle` to exactly v2.4,\ntherefore v2.5.0 won't be selected.\n\nThe obvious thing is to upgrade in`bls-signatures` the version of `hkdf`\nto the latest v0.12.\nThat would make it possible to use `subtle` v2.5.0.\nThe problem is that such an upgrade is not easily possible.\n`hkdf` v0.12 depends on a newer version v0.10 of the `sha2` crate.\nUpdating that breaks the `bls12_381` crate.\nThe reason is the current version v0.8.0 of `bls12_381` depends on an old\nversion v0.9 of the `digest` crate.\n\nThe obvious thing is to upgrade in `bls12_381` the version of `digest` to\nv0.10.\nThat would make it possible to get `hkdf` v0.12 built.\nBut such an upgrade is and open issue at\nhttps://github.com/zkcrypto/bls12_381/issues/102, which mentions that it's\nblocked on https://github.com/zkcrypto/bls12_381/pull/90.\nThat pull request is about updating do the hash-to-curve draft v16, currently\nit's using v12.\nWe use that code path in `bls-signatures`, else we wouldn't enable the\n`experimental` feature of `bls12_381`.\nSo it's even not clear if we'd want such a change to v16.","shortMessageHtmlLink":"fix: remove the pairing feature from fvm_shared"}},{"before":"863f6ef152c8706006d09b4c0febb43627d68491","after":"31118cfad2e83dc3f6202f38ce7d96cd1c747aea","ref":"refs/heads/master","pushedAt":"2024-05-08T20:31:01.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"},"commit":{"message":"feat: FIP-0079: syscall for aggregated bls verification (#2003)\n\nCo-authored-by: DrPeterVanNostrand","shortMessageHtmlLink":"feat: FIP-0079: syscall for aggregated bls verification (#2003)"}},{"before":"2949ff7a9b39ac3909a230959d7ac7450ecc4971","after":"863f6ef152c8706006d09b4c0febb43627d68491","ref":"refs/heads/master","pushedAt":"2024-05-08T20:29:14.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"},"commit":{"message":"chore: upgrade rust toolchain to 1.78.0 (#2006)","shortMessageHtmlLink":"chore: upgrade rust toolchain to 1.78.0 (#2006)"}},{"before":"f25f06d53ffcce2c899a1e9716089abdb41e20b9","after":null,"ref":"refs/heads/rvagg/clusterfuzzlite-rust-nightly","pushedAt":"2024-05-08T20:29:00.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"}},{"before":"c39d880d086aa2e771c7190163436e02715d80f3","after":"2949ff7a9b39ac3909a230959d7ac7450ecc4971","ref":"refs/heads/master","pushedAt":"2024-05-08T20:28:59.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"},"commit":{"message":"fix: install rust nightly toolchain for clusterfuzzlite (#2007)","shortMessageHtmlLink":"fix: install rust nightly toolchain for clusterfuzzlite (#2007)"}},{"before":null,"after":"c39d880d086aa2e771c7190163436e02715d80f3","ref":"refs/heads/feat/nv23","pushedAt":"2024-05-07T11:31:54.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"rjan90","name":"Phi-rjan","path":"/rjan90","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8628857?s=80&v=4"},"commit":{"message":"chore: release fvm_ipld_blockstore v0.2.1 (#2005)","shortMessageHtmlLink":"chore: release fvm_ipld_blockstore v0.2.1 (#2005)"}},{"before":null,"after":"f25f06d53ffcce2c899a1e9716089abdb41e20b9","ref":"refs/heads/rvagg/clusterfuzzlite-rust-nightly","pushedAt":"2024-05-07T09:36:28.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"rvagg","name":"Rod Vagg","path":"/rvagg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/495647?s=80&v=4"},"commit":{"message":"fix: install rust nightly toolchain for clusterfuzzlite","shortMessageHtmlLink":"fix: install rust nightly toolchain for clusterfuzzlite"}},{"before":"055360c281506cd3b4a231ca721bd2fa44c990d8","after":null,"ref":"refs/heads/steb/release-blockstore","pushedAt":"2024-04-30T15:33:59.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"}},{"before":"fedfd3947415afd5e8037f6830a3b41dd1e2cf5b","after":"c39d880d086aa2e771c7190163436e02715d80f3","ref":"refs/heads/master","pushedAt":"2024-04-30T15:33:58.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"},"commit":{"message":"chore: release fvm_ipld_blockstore v0.2.1 (#2005)","shortMessageHtmlLink":"chore: release fvm_ipld_blockstore v0.2.1 (#2005)"}},{"before":null,"after":"055360c281506cd3b4a231ca721bd2fa44c990d8","ref":"refs/heads/steb/release-blockstore","pushedAt":"2024-04-30T15:30:17.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"},"commit":{"message":"chore: release fvm_ipld_blockstore v0.2.1","shortMessageHtmlLink":"chore: release fvm_ipld_blockstore v0.2.1"}},{"before":"a50538eedef656996048af2b8e5621acde7777c9","after":null,"ref":"refs/heads/chore-cut-release","pushedAt":"2024-04-30T15:12:06.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"}},{"before":"d10baf82857df234b37404507df8bbaa581990ac","after":"fedfd3947415afd5e8037f6830a3b41dd1e2cf5b","ref":"refs/heads/master","pushedAt":"2024-04-30T15:12:05.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"},"commit":{"message":"chore: release fvm 4.2.0 (#2002)","shortMessageHtmlLink":"chore: release fvm 4.2.0 (#2002)"}},{"before":"29389d1924e491064fd5d5dc8be702a873c1d516","after":"a50538eedef656996048af2b8e5621acde7777c9","ref":"refs/heads/chore-cut-release","pushedAt":"2024-04-30T05:18:54.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"rjan90","name":"Phi-rjan","path":"/rjan90","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8628857?s=80&v=4"},"commit":{"message":"Fix bad links in changelog\n\nFix bad links in changelog","shortMessageHtmlLink":"Fix bad links in changelog"}},{"before":"73056bef75df65d64512077488a72340eaf6098e","after":"29389d1924e491064fd5d5dc8be702a873c1d516","ref":"refs/heads/chore-cut-release","pushedAt":"2024-04-29T20:08:53.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"rjan90","name":"Phi-rjan","path":"/rjan90","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8628857?s=80&v=4"},"commit":{"message":"Update changelog\n\nUpdate changelog","shortMessageHtmlLink":"Update changelog"}},{"before":null,"after":"73056bef75df65d64512077488a72340eaf6098e","ref":"refs/heads/chore-cut-release","pushedAt":"2024-04-29T08:36:51.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"rjan90","name":"Phi-rjan","path":"/rjan90","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8628857?s=80&v=4"},"commit":{"message":"Update changelogs\n\nUpdate changelogs","shortMessageHtmlLink":"Update changelogs"}},{"before":"22d341b6c1329d93ef372d7edb2d72cf8bbc31c7","after":null,"ref":"refs/heads/phi-nv23-skeleton","pushedAt":"2024-04-15T14:39:10.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"}},{"before":"ea72025723ea6984f2e4807240795dc08a7dbdfd","after":"d10baf82857df234b37404507df8bbaa581990ac","ref":"refs/heads/master","pushedAt":"2024-04-15T14:39:09.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"},"commit":{"message":"feat: Add nv23-skeleton (#2000)","shortMessageHtmlLink":"feat: Add nv23-skeleton (#2000)"}},{"before":"2c9445e488440994b0efb2b4eabb0c9ed6ea49e1","after":"22d341b6c1329d93ef372d7edb2d72cf8bbc31c7","ref":"refs/heads/phi-nv23-skeleton","pushedAt":"2024-04-15T14:32:27.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"rjan90","name":"Phi-rjan","path":"/rjan90","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8628857?s=80&v=4"},"commit":{"message":"Update fvm/src/gas/price_list.rs\n\nCo-authored-by: Steven Allen ","shortMessageHtmlLink":"Update fvm/src/gas/price_list.rs"}},{"before":"01bcb9e8148f702045e7714bd449bd5eae7df141","after":"2c9445e488440994b0efb2b4eabb0c9ed6ea49e1","ref":"refs/heads/phi-nv23-skeleton","pushedAt":"2024-04-15T14:31:45.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"rjan90","name":"Phi-rjan","path":"/rjan90","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8628857?s=80&v=4"},"commit":{"message":"Add trailing newline\n\nAdd trailing newline","shortMessageHtmlLink":"Add trailing newline"}},{"before":"544e62d3ae75ceb2da4909dff3d24bcef8d990c4","after":"01bcb9e8148f702045e7714bd449bd5eae7df141","ref":"refs/heads/phi-nv23-skeleton","pushedAt":"2024-04-14T15:19:20.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"rjan90","name":"Phi-rjan","path":"/rjan90","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8628857?s=80&v=4"},"commit":{"message":"Add nv23 skeleton\n\nAdd nv23 skeleton","shortMessageHtmlLink":"Add nv23 skeleton"}},{"before":"aa66df326e9f878e615483c256da73ba38edc7e7","after":"544e62d3ae75ceb2da4909dff3d24bcef8d990c4","ref":"refs/heads/phi-nv23-skeleton","pushedAt":"2024-04-14T14:42:30.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"rjan90","name":"Phi-rjan","path":"/rjan90","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8628857?s=80&v=4"},"commit":{"message":"Add nv23 skeleton\n\nAdd nv23 skeleton","shortMessageHtmlLink":"Add nv23 skeleton"}},{"before":null,"after":"aa66df326e9f878e615483c256da73ba38edc7e7","ref":"refs/heads/phi-nv23-skeleton","pushedAt":"2024-04-13T15:58:23.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"rjan90","name":"Phi-rjan","path":"/rjan90","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/8628857?s=80&v=4"},"commit":{"message":"Add nv23 skeleton\n\nAdd nv23 skeleton","shortMessageHtmlLink":"Add nv23 skeleton"}},{"before":"d794fb750ef4d0361ba6ab332ccf66ad9d2bc573","after":"ea72025723ea6984f2e4807240795dc08a7dbdfd","ref":"refs/heads/master","pushedAt":"2024-04-08T02:22:33.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"},"commit":{"message":"remove .DS_Store (#1998)\n\nintroduced by 86eb6fb","shortMessageHtmlLink":"remove .DS_Store (#1998)"}},{"before":"f1cd21c9048593e0bff08a7de3c345411fbf1f56","after":null,"ref":"refs/heads/steb/update-wasmtime","pushedAt":"2024-04-05T15:32:20.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"}},{"before":"464bba53ad01391452db605002c9b5cca189fe39","after":"d794fb750ef4d0361ba6ab332ccf66ad9d2bc573","ref":"refs/heads/master","pushedAt":"2024-04-05T15:32:19.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"},"commit":{"message":"chore: update to wasmtime 19.0.1 (#1997)\n\nThis looks like a pretty uneventful upgrade.","shortMessageHtmlLink":"chore: update to wasmtime 19.0.1 (#1997)"}},{"before":"464bba53ad01391452db605002c9b5cca189fe39","after":"f1cd21c9048593e0bff08a7de3c345411fbf1f56","ref":"refs/heads/steb/update-wasmtime","pushedAt":"2024-04-04T20:43:24.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"Stebalien","name":"Steven Allen","path":"/Stebalien","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/310393?s=80&v=4"},"commit":{"message":"chore: update to wasmtime 19.0.1\n\nThis looks like a pretty uneventful upgrade.","shortMessageHtmlLink":"chore: update to wasmtime 19.0.1"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEVVUKFwA","startCursor":null,"endCursor":null}},"title":"Activity ยท filecoin-project/ref-fvm"}