{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":244005431,"defaultBranch":"main","name":"tmkms","ownerLogin":"iqlusioninc","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2020-02-29T16:49:30.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/34927277?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1722291087.0","currentOid":""},"activityList":{"items":[{"before":"71476ee71492dae6e453531f74d225fb19a88f4c","after":"ebe22763bc141514b425681b2b7dc45f76b9d2ee","ref":"refs/heads/main","pushedAt":"2024-09-09T16:45:45.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"tony-iqlusion","name":"Tony Arcieri (iqlusion)","path":"/tony-iqlusion","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37432020?s=80&v=4"},"commit":{"message":"Aggregate `SecretConnection` chunks with unmarshal protobuf retry (#903)\n\n```go\r\n// tendermint/cometbft proposal:\r\ntype Proposal struct {\r\n\tType SignedMsgType\r\n\tHeight int64\r\n\tRound int32\r\n\tPolRound int32\r\n\tBlockID BlockID\r\n\tTimestamp time.Time\r\n\tSignature []byte\r\n}\r\n```\r\n\r\n```go\r\n// vs sei-tendermint proposal\r\ntype Proposal struct {\r\n\tType SignedMsgType\r\n\tHeight int64\r\n\tRound int32\r\n\tPolRound int32\r\n\tBlockID BlockID\r\n\tTimestamp time.Time\r\n\tSignature []byte\r\n\r\n // this is a list, and can be very long...\r\n\tTxKeys []*TxKey\r\n\tEvidence *EvidenceList\r\n\tLastCommit *Commit\r\n\tHeader Header\r\n\tProposerAddress []byte\r\n}\r\n```\r\n\r\nSince Proposal has TxKeys and other lists, Proposal has variable length\r\nIt is easily goes > 1024 bytes if block has big mount of txs. And it\r\nis not a problem of canonical tendermint/cometbft implementations\r\nsince due to its message structure, it has a fixed max length < 1024 (DATA_MAX_SIZE)\r\n\r\nsei-tendermint, when it connects to remote signer over tcp, sends\r\nproposal divided by chunk of DATA_MAX_SIZE (1024) each, which kind of\r\nfits the expectation of tmkms. However, tmkms never tries to\r\naggregate chunks. In fact, it is impossible for tmkms to implement\r\naggregation properly without knowing the length beforehand: which is\r\nnot provided by tendermint protocol.\r\n\r\nThere might be a confusion also, because all implementations of\r\ntendermint send lenght-delimited protobufs, and tmkms also reads with\r\na function \"length delimited\". However, it actually means that the\r\nprotobuf msg is prepended by it's length: so that when tmkms reads\r\n1024 bytes it knows which zeroes are payload and which a need to be\r\ncut. Another words, it has nothing to do with multi-chunk payload.\r\n\r\nWhich means that sei-tendermint just doesn't bother about tcp\r\nremote signer, and it is impossible to make it work with tmkms without\r\nrewriting both and adding this custom protocol of \"aggregate chunks until\r\nyou get full message length\".\r\n\r\n--\r\nThis code implements aggregation by trying to unmarshal aggregated\r\nmessage each time it gets a new chunk. I don't think it is a good idea\r\nin a long run, however, the alternative would be to adjust both Sei\r\nand tmkms, rolling out new length-aware protocol between them -- I'm\r\nnot sure how sufficient it is and definitely needs a\r\ndiscussion. Current solution is compartable with both\r\ncometbft/tendermint and sei-tendermint, however, way less efficient then\r\nthe original `read` implementation of tmkms.\r\n\r\n---------\r\n\r\nCo-authored-by: Mateusz Kaczanowski ","shortMessageHtmlLink":"Aggregate SecretConnection chunks with unmarshal protobuf retry (#903)"}},{"before":"4d2d4b85e59efbb479d6dae8bb315ff6955b8314","after":null,"ref":"refs/heads/bump-deps-and-fix-unused-qualifications","pushedAt":"2024-07-29T22:11:27.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"tony-iqlusion","name":"Tony Arcieri (iqlusion)","path":"/tony-iqlusion","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37432020?s=80&v=4"}},{"before":"c8b7811c09e2e11cfddad2f9a67c07477a302e96","after":"71476ee71492dae6e453531f74d225fb19a88f4c","ref":"refs/heads/main","pushedAt":"2024-07-29T22:11:24.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"tony-iqlusion","name":"Tony Arcieri (iqlusion)","path":"/tony-iqlusion","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37432020?s=80&v=4"},"commit":{"message":"Bump dependencies and fix unused qualifications (#917)\n\nUpdates the following dependencies:\r\n\r\n $ cargo update\r\n Updating crates.io index\r\n Locking 106 packages to latest compatible versions\r\n Updating aho-corasick v1.1.2 -> v1.1.3\r\n Updating anstream v0.6.13 -> v0.6.15\r\n Updating anstyle v1.0.6 -> v1.0.8\r\n Updating anstyle-parse v0.2.3 -> v0.2.5\r\n Updating anstyle-query v1.0.2 -> v1.1.1\r\n Updating anstyle-wincon v3.0.2 -> v3.0.4\r\n Updating anyhow v1.0.81 -> v1.0.86\r\n Updating arc-swap v1.7.0 -> v1.7.1\r\n Updating autocfg v1.1.0 -> v1.3.0\r\n Updating backtrace v0.3.69 -> v0.3.71 (latest: v0.3.73)\r\n Updating bip32 v0.5.1 -> v0.5.2\r\n Updating bitflags v2.4.2 -> v2.6.0\r\n Updating bs58 v0.5.0 -> v0.5.1\r\n Updating bumpalo v3.15.4 -> v3.16.0\r\n Updating bytes v1.6.0 -> v1.6.1\r\n Updating cc v1.0.90 -> v1.1.7\r\n Updating chrono v0.4.37 -> v0.4.38\r\n Updating clap v4.5.4 -> v4.5.11\r\n Updating clap_builder v4.5.2 -> v4.5.11\r\n Updating clap_derive v4.5.4 -> v4.5.11\r\n Updating clap_lex v0.7.0 -> v0.7.2\r\n Updating colorchoice v1.0.0 -> v1.0.2\r\n Updating curve25519-dalek v4.1.2 -> v4.1.3\r\n Updating der v0.7.8 -> v0.7.9\r\n Updating either v1.10.0 -> v1.13.0\r\n Updating errno v0.3.8 -> v0.3.9\r\n Updating fastrand v2.0.1 -> v2.1.0\r\n Updating fiat-crypto v0.2.6 -> v0.2.9\r\n Updating getrandom v0.2.12 -> v0.2.15\r\n Updating h2 v0.3.25 -> v0.3.26 (latest: v0.4.5)\r\n Updating hashbrown v0.14.3 -> v0.14.5\r\n Adding hermit-abi v0.3.9 (latest: v0.4.0)\r\n Updating httparse v1.8.0 -> v1.9.4\r\n Updating hyper v0.14.28 -> v0.14.30 (latest: v1.4.1)\r\n Updating indexmap v2.2.5 -> v2.2.6\r\n Adding is_terminal_polyfill v1.70.1\r\n Updating itertools v0.11.0 -> v0.12.1 (latest: v0.13.0)\r\n Updating itoa v1.0.10 -> v1.0.11\r\n Updating lazy_static v1.4.0 -> v1.5.0\r\n Updating libc v0.2.153 -> v0.2.155\r\n Updating libusb1-sys v0.6.4 -> v0.7.0\r\n Updating linux-raw-sys v0.4.13 -> v0.4.14 (latest: v0.6.4)\r\n Updating lock_api v0.4.11 -> v0.4.12\r\n Updating log v0.4.21 -> v0.4.22\r\n Updating memchr v2.7.1 -> v2.7.4\r\n Updating miniz_oxide v0.7.2 -> v0.7.4\r\n Updating mio v0.8.11 -> v1.0.1\r\n Updating native-tls v0.2.11 -> v0.2.12\r\n Updating num-traits v0.2.18 -> v0.2.19\r\n Updating openssl v0.10.64 -> v0.10.66\r\n Updating openssl-sys v0.9.101 -> v0.9.103\r\n Updating paste v1.0.14 -> v1.0.15\r\n Updating pin-project-lite v0.2.13 -> v0.2.14\r\n Removing platforms v3.3.0\r\n Updating proc-macro2 v1.0.79 -> v1.0.86\r\n Updating prost v0.12.3 -> v0.12.6 (latest: v0.13.1)\r\n Updating prost-derive v0.12.3 -> v0.12.6 (latest: v0.13.1)\r\n Updating prost-types v0.12.3 -> v0.12.6 (latest: v0.13.1)\r\n Updating quote v1.0.35 -> v1.0.36\r\n Updating regex v1.10.3 -> v1.10.5\r\n Updating regex-automata v0.4.6 -> v0.4.7\r\n Updating regex-syntax v0.8.2 -> v0.8.4\r\n Updating rusb v0.9.3 -> v0.9.4\r\n Updating rustc-demangle v0.1.23 -> v0.1.24\r\n Updating rustix v0.38.31 -> v0.38.34\r\n Updating ryu v1.0.17 -> v1.0.18\r\n Updating security-framework v2.9.2 -> v2.11.1\r\n Updating security-framework-sys v2.9.1 -> v2.11.1\r\n Updating semver v1.0.22 -> v1.0.23\r\n Updating serde v1.0.197 -> v1.0.204\r\n Updating serde_bytes v0.11.14 -> v0.11.15\r\n Updating serde_derive v1.0.197 -> v1.0.204\r\n Updating serde_json v1.0.114 -> v1.0.121\r\n Updating serde_repr v0.1.18 -> v0.1.19\r\n Updating serde_spanned v0.6.5 -> v0.6.7\r\n Updating smallvec v1.13.1 -> v1.13.2\r\n Updating socket2 v0.5.6 -> v0.5.7\r\n Updating strsim v0.11.0 -> v0.11.1\r\n Updating subtle v2.5.0 -> v2.6.1\r\n Updating syn v2.0.53 -> v2.0.72\r\n Updating thiserror v1.0.58 -> v1.0.63\r\n Updating thiserror-impl v1.0.58 -> v1.0.63\r\n Updating time v0.3.34 -> v0.3.36\r\n Updating time-macros v0.2.17 -> v0.2.18\r\n Updating tinyvec v1.6.0 -> v1.8.0\r\n Updating tokio v1.36.0 -> v1.39.2\r\n Updating tokio-macros v2.2.0 -> v2.4.0\r\n Updating tokio-util v0.7.10 -> v0.7.11\r\n Updating toml v0.8.12 -> v0.8.16\r\n Updating toml_datetime v0.6.5 -> v0.6.7\r\n Updating toml_edit v0.22.8 -> v0.22.17\r\n Updating url v2.5.0 -> v2.5.2\r\n Updating utf8parse v0.2.1 -> v0.2.2\r\n Updating uuid v1.8.0 -> v1.10.0\r\n Updating version_check v0.9.4 -> v0.9.5\r\n Updating winapi-util v0.1.6 -> v0.1.8\r\n Updating windows-targets v0.52.4 -> v0.52.6\r\n Updating windows_aarch64_gnullvm v0.52.4 -> v0.52.6\r\n Updating windows_aarch64_msvc v0.52.4 -> v0.52.6\r\n Updating windows_i686_gnu v0.52.4 -> v0.52.6\r\n Adding windows_i686_gnullvm v0.52.6\r\n Updating windows_i686_msvc v0.52.4 -> v0.52.6\r\n Updating windows_x86_64_gnu v0.52.4 -> v0.52.6\r\n Updating windows_x86_64_gnullvm v0.52.4 -> v0.52.6\r\n Updating windows_x86_64_msvc v0.52.4 -> v0.52.6\r\n Updating winnow v0.6.5 -> v0.6.16\r\n Updating zeroize v1.7.0 -> v1.8.1","shortMessageHtmlLink":"Bump dependencies and fix unused qualifications (#917)"}},{"before":"c792fa08556d6c8ee7b81622f60bd2c11656a93d","after":"4d2d4b85e59efbb479d6dae8bb315ff6955b8314","ref":"refs/heads/bump-deps-and-fix-unused-qualifications","pushedAt":"2024-07-29T21:56:37.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"tony-iqlusion","name":"Tony Arcieri (iqlusion)","path":"/tony-iqlusion","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37432020?s=80&v=4"},"commit":{"message":"rustfmt","shortMessageHtmlLink":"rustfmt"}},{"before":null,"after":"c792fa08556d6c8ee7b81622f60bd2c11656a93d","ref":"refs/heads/bump-deps-and-fix-unused-qualifications","pushedAt":"2024-07-29T21:51:37.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"tony-iqlusion","name":"Tony Arcieri (iqlusion)","path":"/tony-iqlusion","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37432020?s=80&v=4"},"commit":{"message":"cargo fix","shortMessageHtmlLink":"cargo fix"}},{"before":"c1801bda1d47210ad102df5035ac26cfd4fe08d3","after":null,"ref":"refs/heads/dependabot/cargo/tendermint-0.36.0","pushedAt":"2024-05-31T13:45:18.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"c66e6a30c569173f069d9f09e34d0cc227e2f777","ref":"refs/heads/dependabot/cargo/tendermint-0.37.0","pushedAt":"2024-05-31T13:45:14.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump tendermint from 0.35.0 to 0.37.0\n\nBumps [tendermint](https://github.com/informalsystems/tendermint-rs) from 0.35.0 to 0.37.0.\n- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)\n- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/informalsystems/tendermint-rs/compare/v0.35.0...v0.37.0)\n\n---\nupdated-dependencies:\n- dependency-name: tendermint\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump tendermint from 0.35.0 to 0.37.0"}},{"before":"11f5f30f6d0de35203442658209027026018a0c7","after":null,"ref":"refs/heads/dependabot/cargo/tendermint-p2p-0.36.0","pushedAt":"2024-05-31T13:44:33.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"fb51fce987011f45fd6ab095919f6c1046d1758f","ref":"refs/heads/dependabot/cargo/tendermint-p2p-0.37.0","pushedAt":"2024-05-31T13:44:29.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump tendermint-p2p from 0.35.0 to 0.37.0\n\nBumps [tendermint-p2p](https://github.com/informalsystems/tendermint-rs) from 0.35.0 to 0.37.0.\n- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)\n- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/informalsystems/tendermint-rs/compare/v0.35.0...v0.37.0)\n\n---\nupdated-dependencies:\n- dependency-name: tendermint-p2p\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump tendermint-p2p from 0.35.0 to 0.37.0"}},{"before":"21599179c214c7f18c3e2e51d67fcd9542d3fcd6","after":null,"ref":"refs/heads/dependabot/cargo/tendermint-proto-0.36.0","pushedAt":"2024-05-31T13:44:05.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"9da951213daa920168689bbc639625ace4b74c8c","ref":"refs/heads/dependabot/cargo/tendermint-proto-0.37.0","pushedAt":"2024-05-31T13:44:01.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump tendermint-proto from 0.35.0 to 0.37.0\n\nBumps [tendermint-proto](https://github.com/informalsystems/tendermint-rs) from 0.35.0 to 0.37.0.\n- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)\n- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/informalsystems/tendermint-rs/compare/v0.35.0...v0.37.0)\n\n---\nupdated-dependencies:\n- dependency-name: tendermint-proto\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump tendermint-proto from 0.35.0 to 0.37.0"}},{"before":"2312f22b9b87d7cf4c4f18c3867caee8b3148e19","after":null,"ref":"refs/heads/dependabot/cargo/tendermint-config-0.36.0","pushedAt":"2024-05-31T13:43:39.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"0d6ac3814c058ead9450933eecd821e7ecbbb59f","ref":"refs/heads/dependabot/cargo/tendermint-config-0.37.0","pushedAt":"2024-05-31T13:43:35.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump tendermint-config from 0.35.0 to 0.37.0\n\nBumps [tendermint-config](https://github.com/informalsystems/tendermint-rs) from 0.35.0 to 0.37.0.\n- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)\n- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/informalsystems/tendermint-rs/compare/v0.35.0...v0.37.0)\n\n---\nupdated-dependencies:\n- dependency-name: tendermint-config\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump tendermint-config from 0.35.0 to 0.37.0"}},{"before":null,"after":"b468130e58f8996a564783746704cac38e252e10","ref":"refs/heads/dependabot/cargo/zeroize-1.8.1","pushedAt":"2024-05-27T13:10:22.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump zeroize from 1.7.0 to 1.8.1\n\nBumps [zeroize](https://github.com/RustCrypto/utils) from 1.7.0 to 1.8.1.\n- [Commits](https://github.com/RustCrypto/utils/compare/zeroize-v1.7.0...zeroize-v1.8.1)\n\n---\nupdated-dependencies:\n- dependency-name: zeroize\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump zeroize from 1.7.0 to 1.8.1"}},{"before":"c15547ef7b7756f84da8d0db511f18e81da1ed58","after":null,"ref":"refs/heads/dependabot/cargo/prost-derive-0.12.5","pushedAt":"2024-05-20T13:56:52.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"ad07e3c4ee811eea7f918cc11d613357937640f3","ref":"refs/heads/dependabot/cargo/prost-derive-0.12.6","pushedAt":"2024-05-20T13:56:49.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump prost-derive from 0.12.3 to 0.12.6\n\nBumps [prost-derive](https://github.com/tokio-rs/prost) from 0.12.3 to 0.12.6.\n- [Release notes](https://github.com/tokio-rs/prost/releases)\n- [Commits](https://github.com/tokio-rs/prost/compare/v0.12.3...v0.12.6)\n\n---\nupdated-dependencies:\n- dependency-name: prost-derive\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump prost-derive from 0.12.3 to 0.12.6"}},{"before":"a4c20d7314b38bf5aa7edb9626009e25c67714e0","after":null,"ref":"refs/heads/dependabot/cargo/thiserror-1.0.60","pushedAt":"2024-05-20T13:56:27.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"0d72bfef2de212147db876e2ad8a912905594a89","ref":"refs/heads/dependabot/cargo/thiserror-1.0.61","pushedAt":"2024-05-20T13:56:24.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump thiserror from 1.0.58 to 1.0.61\n\nBumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.58 to 1.0.61.\n- [Release notes](https://github.com/dtolnay/thiserror/releases)\n- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.58...1.0.61)\n\n---\nupdated-dependencies:\n- dependency-name: thiserror\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump thiserror from 1.0.58 to 1.0.61"}},{"before":"0ecd76d72c178ce0a7745b2c28e9b0789d6ee7ec","after":null,"ref":"refs/heads/dependabot/cargo/prost-0.12.4","pushedAt":"2024-05-20T13:56:05.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"dd49bdb7ef549184bc880168f6cff5370012b12f","ref":"refs/heads/dependabot/cargo/prost-0.12.6","pushedAt":"2024-05-20T13:56:02.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump prost from 0.12.3 to 0.12.6\n\nBumps [prost](https://github.com/tokio-rs/prost) from 0.12.3 to 0.12.6.\n- [Release notes](https://github.com/tokio-rs/prost/releases)\n- [Commits](https://github.com/tokio-rs/prost/compare/v0.12.3...v0.12.6)\n\n---\nupdated-dependencies:\n- dependency-name: prost\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump prost from 0.12.3 to 0.12.6"}},{"before":"ba85f15cb584d941eb461a2eedf8c8d9457fb1ff","after":null,"ref":"refs/heads/dependabot/cargo/prost-derive-0.12.4","pushedAt":"2024-05-09T13:43:35.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"c15547ef7b7756f84da8d0db511f18e81da1ed58","ref":"refs/heads/dependabot/cargo/prost-derive-0.12.5","pushedAt":"2024-05-09T13:43:32.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump prost-derive from 0.12.3 to 0.12.5\n\nBumps [prost-derive](https://github.com/tokio-rs/prost) from 0.12.3 to 0.12.5.\n- [Release notes](https://github.com/tokio-rs/prost/releases)\n- [Commits](https://github.com/tokio-rs/prost/commits)\n\n---\nupdated-dependencies:\n- dependency-name: prost-derive\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump prost-derive from 0.12.3 to 0.12.5"}},{"before":"cdc2dc8d0914b4ed267df698f085f0d0f5b30aa9","after":null,"ref":"refs/heads/dependabot/cargo/thiserror-1.0.59","pushedAt":"2024-05-07T13:52:11.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":null,"after":"a4c20d7314b38bf5aa7edb9626009e25c67714e0","ref":"refs/heads/dependabot/cargo/thiserror-1.0.60","pushedAt":"2024-05-07T13:52:07.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump thiserror from 1.0.58 to 1.0.60\n\nBumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.58 to 1.0.60.\n- [Release notes](https://github.com/dtolnay/thiserror/releases)\n- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.58...1.0.60)\n\n---\nupdated-dependencies:\n- dependency-name: thiserror\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump thiserror from 1.0.58 to 1.0.60"}},{"before":null,"after":"c1801bda1d47210ad102df5035ac26cfd4fe08d3","ref":"refs/heads/dependabot/cargo/tendermint-0.36.0","pushedAt":"2024-04-25T13:36:59.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump tendermint from 0.35.0 to 0.36.0\n\nBumps [tendermint](https://github.com/informalsystems/tendermint-rs) from 0.35.0 to 0.36.0.\n- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)\n- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/informalsystems/tendermint-rs/compare/v0.35.0...v0.36.0)\n\n---\nupdated-dependencies:\n- dependency-name: tendermint\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump tendermint from 0.35.0 to 0.36.0"}},{"before":null,"after":"21599179c214c7f18c3e2e51d67fcd9542d3fcd6","ref":"refs/heads/dependabot/cargo/tendermint-proto-0.36.0","pushedAt":"2024-04-25T13:36:49.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump tendermint-proto from 0.35.0 to 0.36.0\n\nBumps [tendermint-proto](https://github.com/informalsystems/tendermint-rs) from 0.35.0 to 0.36.0.\n- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)\n- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/informalsystems/tendermint-rs/compare/v0.35.0...v0.36.0)\n\n---\nupdated-dependencies:\n- dependency-name: tendermint-proto\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump tendermint-proto from 0.35.0 to 0.36.0"}},{"before":null,"after":"2312f22b9b87d7cf4c4f18c3867caee8b3148e19","ref":"refs/heads/dependabot/cargo/tendermint-config-0.36.0","pushedAt":"2024-04-25T13:36:40.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump tendermint-config from 0.35.0 to 0.36.0\n\nBumps [tendermint-config](https://github.com/informalsystems/tendermint-rs) from 0.35.0 to 0.36.0.\n- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)\n- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/informalsystems/tendermint-rs/compare/v0.35.0...v0.36.0)\n\n---\nupdated-dependencies:\n- dependency-name: tendermint-config\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump tendermint-config from 0.35.0 to 0.36.0"}},{"before":null,"after":"11f5f30f6d0de35203442658209027026018a0c7","ref":"refs/heads/dependabot/cargo/tendermint-p2p-0.36.0","pushedAt":"2024-04-25T13:36:31.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump tendermint-p2p from 0.35.0 to 0.36.0\n\nBumps [tendermint-p2p](https://github.com/informalsystems/tendermint-rs) from 0.35.0 to 0.36.0.\n- [Release notes](https://github.com/informalsystems/tendermint-rs/releases)\n- [Changelog](https://github.com/informalsystems/tendermint-rs/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/informalsystems/tendermint-rs/compare/v0.35.0...v0.36.0)\n\n---\nupdated-dependencies:\n- dependency-name: tendermint-p2p\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump tendermint-p2p from 0.35.0 to 0.36.0"}},{"before":null,"after":"cdc2dc8d0914b4ed267df698f085f0d0f5b30aa9","ref":"refs/heads/dependabot/cargo/thiserror-1.0.59","pushedAt":"2024-04-22T13:19:06.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump thiserror from 1.0.58 to 1.0.59\n\nBumps [thiserror](https://github.com/dtolnay/thiserror) from 1.0.58 to 1.0.59.\n- [Release notes](https://github.com/dtolnay/thiserror/releases)\n- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.58...1.0.59)\n\n---\nupdated-dependencies:\n- dependency-name: thiserror\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump thiserror from 1.0.58 to 1.0.59"}},{"before":null,"after":"beafea8340412513a864733d58ec9b31a633a543","ref":"refs/heads/dependabot/cargo/chrono-0.4.38","pushedAt":"2024-04-15T13:41:44.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump chrono from 0.4.37 to 0.4.38\n\nBumps [chrono](https://github.com/chronotope/chrono) from 0.4.37 to 0.4.38.\n- [Release notes](https://github.com/chronotope/chrono/releases)\n- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/chronotope/chrono/compare/v0.4.37...v0.4.38)\n\n---\nupdated-dependencies:\n- dependency-name: chrono\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump chrono from 0.4.37 to 0.4.38"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEsSTOGQA","startCursor":null,"endCursor":null}},"title":"Activity ยท iqlusioninc/tmkms"}