{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":320029760,"defaultBranch":"main","name":"rustls-ffi","ownerLogin":"rustls","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2020-12-09T17:26:05.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/65125397?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1727264582.0","currentOid":""},"activityList":{"items":[{"before":"c73b2e1333ed002ebda283bc20c203ca70356b71","after":"c6d5b7e92d365c657e89b4b6b849aeaab23a17a2","ref":"refs/heads/main","pushedAt":"2024-09-27T16:08:44.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cpu","name":"Daniel McCarney","path":"/cpu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292650?s=80&v=4"},"commit":{"message":"tests: fix clippy::zombie_processes finding\n\nNightly clippy's `clippy::zombie_processes` lint flagged the following:\n\n```\nerror: spawned process is never `wait()`ed on\n --> tests/client_server.rs:285:26\n |\n285 | let mut server = self.server_opts.run_server();\n | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n |\n = note: consider calling `.wait()`\n = note: not doing so might leave behind zombie processes\n = note: see https://doc.rust-lang.org/stable/std/process/struct.Child.html#warning\n = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#zombie_processes\n```\n\nWhile we _do_ call `kill()` on the process, we weren't `wait()`ing it.\nThe `Process::Child` docs have a warning:\n\n On some systems, calling wait or similar is necessary for the OS to\n release resources. A process that terminated but has not been waited on\n is still around as a “zombie”. Leaving too many zombies around may\n exhaust global resources (for example process IDs).\n\nSo it seems it may not be sufficient on all systems to `kill()` without\n`wait()`.\n\nLet's add a `wait()` just to be sure. Nobody likes zombies.","shortMessageHtmlLink":"tests: fix clippy::zombie_processes finding"}},{"before":"e5a7037cf9a43b9228c1353b87a6c78bb15e8d6d","after":"c73b2e1333ed002ebda283bc20c203ca70356b71","ref":"refs/heads/main","pushedAt":"2024-09-26T13:47:03.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cpu","name":"Daniel McCarney","path":"/cpu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292650?s=80&v=4"},"commit":{"message":"client/server: support for KeyLog trait, SSLKEYLOGFILE\n\nFor debugging purposes it's quite helpful to be able to log session\nsecrets to a file specified by the `SSLKEYLOGFILE`, for example to use\nwith Wireshark to decrypt session traffic.\n\nThis commit adds two methods to rustls-ffi for both client and server\nconfigurations to facilitate this:\n\n1. `rustls_server_config_builder_set_key_log_file()` and\n `rustls_client_config_builder_set_key_log_file()` enable using the\n Rustls `KeyLogFile` implementation of the `KeyLog` trait. This option\n simply honours the `SSLKEYLOGFILE` env var and spits out a NSS\n formatted key log file appropriate for use with Wireshark and other\n tools that support this format.\n\n2. `rustls_server_config_builder_set_key_log()` and\n `rustls_client_config_builder_set_key_log()` enable providing\n C callbacks that will be invoked to decide which secrets are logged,\n and to do the logging. This allows for fine-grained control over how\n secrets are logged and may be more appropriate for applications that\n already handle this task for other TLS backends (e.g. curl).\n\nThe client and server examples are updated to optionally use these new\nfeatures. If the `SSLKEYLOG` env. var is set, both will use the\n`_set_key_log_file()` fns to set up the standard file based key logging.\nIf the `STDERRKEYLOG` env var is set then both will use the\n`_set_key_log()` fns to set up custom callbacks that will print the\nhex-encoded secret data to stderr as a simple demonstration.","shortMessageHtmlLink":"client/server: support for KeyLog trait, SSLKEYLOGFILE"}},{"before":"fcfb4b388b87d469ee542912340d2a36731019de","after":null,"ref":"refs/heads/dependabot/cargo/libc-0.2.159","pushedAt":"2024-09-25T11:43:02.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"cpu","name":"Daniel McCarney","path":"/cpu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292650?s=80&v=4"}},{"before":"326bb76f64db954a92663e87fcf620f2a615ec99","after":"e5a7037cf9a43b9228c1353b87a6c78bb15e8d6d","ref":"refs/heads/main","pushedAt":"2024-09-25T11:43:00.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cpu","name":"Daniel McCarney","path":"/cpu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292650?s=80&v=4"},"commit":{"message":"build(deps): bump libc from 0.2.158 to 0.2.159\n\nBumps [libc](https://github.com/rust-lang/libc) from 0.2.158 to 0.2.159.\n- [Release notes](https://github.com/rust-lang/libc/releases)\n- [Changelog](https://github.com/rust-lang/libc/blob/0.2.159/CHANGELOG.md)\n- [Commits](https://github.com/rust-lang/libc/compare/0.2.158...0.2.159)\n\n---\nupdated-dependencies:\n- dependency-name: libc\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump libc from 0.2.158 to 0.2.159"}},{"before":null,"after":"fcfb4b388b87d469ee542912340d2a36731019de","ref":"refs/heads/dependabot/cargo/libc-0.2.159","pushedAt":"2024-09-25T02:50:13.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 libc from 0.2.158 to 0.2.159\n\nBumps [libc](https://github.com/rust-lang/libc) from 0.2.158 to 0.2.159.\n- [Release notes](https://github.com/rust-lang/libc/releases)\n- [Changelog](https://github.com/rust-lang/libc/blob/0.2.159/CHANGELOG.md)\n- [Commits](https://github.com/rust-lang/libc/compare/0.2.158...0.2.159)\n\n---\nupdated-dependencies:\n- dependency-name: libc\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump libc from 0.2.158 to 0.2.159"}},{"before":"7d5ecaf001e095cdf709406a435973fd30c3ead4","after":"326bb76f64db954a92663e87fcf620f2a615ec99","ref":"refs/heads/main","pushedAt":"2024-09-12T15:33:32.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cpu","name":"Daniel McCarney","path":"/cpu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292650?s=80&v=4"},"commit":{"message":"Cargo: version 0.14.0-rc1 -> 0.14.0","shortMessageHtmlLink":"Cargo: version 0.14.0-rc1 -> 0.14.0"}},{"before":"803af3e87082177d36b0695a553f09a174297e8c","after":"7d5ecaf001e095cdf709406a435973fd30c3ead4","ref":"refs/heads/main","pushedAt":"2024-09-10T14:42:02.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cpu","name":"Daniel McCarney","path":"/cpu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292650?s=80&v=4"},"commit":{"message":"cipher: allow getting the proto of a ciphersuite\n\nThis commit adds a `rustls_supported_ciphersuite_protocol_version()` fn\nfor getting the `rustls_tls_version` IANA registered protocol version\nidentifier supported by a given `rustls_supported_ciphersuite`. This\navoids downstream users having to use\n`rustls_supported_ciphersuite_get_name()` and then matching on the\nprotocol version prefix in that identifier.","shortMessageHtmlLink":"cipher: allow getting the proto of a ciphersuite"}},{"before":"99f40a231704b7df7969411052a4e4e13b331ad1","after":"803af3e87082177d36b0695a553f09a174297e8c","ref":"refs/heads/main","pushedAt":"2024-09-10T13:25:44.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cpu","name":"Daniel McCarney","path":"/cpu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292650?s=80&v=4"},"commit":{"message":"cargo: rustls 0.23.12 -> 0.23.13","shortMessageHtmlLink":"cargo: rustls 0.23.12 -> 0.23.13"}},{"before":"b4d61cc1f6c45bdff7c2a9c79a1bdef1d653abb3","after":"99f40a231704b7df7969411052a4e4e13b331ad1","ref":"refs/heads/main","pushedAt":"2024-09-10T12:09:21.000Z","pushType":"pr_merge","commitsCount":3,"pusher":{"login":"cpu","name":"Daniel McCarney","path":"/cpu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292650?s=80&v=4"},"commit":{"message":"crypto_provider: expose a way to get CSRNG data\n\nThis commit adds a `rustls_crypto_provider_random()` fn for filling\na buffer with cryptographically secure random data using\na specific `rustls_crypto_provider`, and\n`rustls_default_crypto_provider_random()` for doing the same with the\nprocess-wide default.","shortMessageHtmlLink":"crypto_provider: expose a way to get CSRNG data"}},{"before":"635c8f18587dba168fed5ba99bc694423278da12","after":"b4d61cc1f6c45bdff7c2a9c79a1bdef1d653abb3","ref":"refs/heads/main","pushedAt":"2024-09-09T21:56:15.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cpu","name":"Daniel McCarney","path":"/cpu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292650?s=80&v=4"},"commit":{"message":"ci: remove unneeded cargo-c job in test workflow\n\nWe test cargo-c in the `pkg-config.yaml` workflow now. Additionally what\nwas left of the `cargo-c` job was simply checking out the src and\ninstalling Rust but doing no actual work/testing of `rustls-ffi`...","shortMessageHtmlLink":"ci: remove unneeded cargo-c job in test workflow"}},{"before":"9e7bc9e0e1e6ecc78a8133d8bbfc1aa74322d9d5","after":"635c8f18587dba168fed5ba99bc694423278da12","ref":"refs/heads/main","pushedAt":"2024-09-09T15:42:49.000Z","pushType":"pr_merge","commitsCount":25,"pusher":{"login":"cpu","name":"Daniel McCarney","path":"/cpu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292650?s=80&v=4"},"commit":{"message":"Cargo: version 0.13.0 -> 0.14.0-rc1\n\nKeeping as a release candidate while we debug one remaining issue with\na downstream HTTPD mod_tls update.","shortMessageHtmlLink":"Cargo: version 0.13.0 -> 0.14.0-rc1"}},{"before":"d9d4415a4d94a41e0b4d9239bd3be569d426a2b3","after":null,"ref":"refs/heads/jbp-gha-typo","pushedAt":"2024-09-05T15:50:44.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"ctz","name":"Joe Birr-Pixton","path":"/ctz","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/579363?s=80&v=4"}},{"before":"d00b0355dc8d9e387340106daf8111c5c0ad1012","after":"9e7bc9e0e1e6ecc78a8133d8bbfc1aa74322d9d5","ref":"refs/heads/main","pushedAt":"2024-09-05T15:50:43.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"ctz","name":"Joe Birr-Pixton","path":"/ctz","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/579363?s=80&v=4"},"commit":{"message":"pkg-config.yml: remove pkg-config install on mac\n\nThis was not necessary, and was actually unconditionally\nskipped.","shortMessageHtmlLink":"pkg-config.yml: remove pkg-config install on mac"}},{"before":"bbac073b09dd0b3b832493dcf66887f747945e9b","after":null,"ref":"refs/heads/jbp-docs-updates","pushedAt":"2024-09-05T15:45:23.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"ctz","name":"Joe Birr-Pixton","path":"/ctz","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/579363?s=80&v=4"}},{"before":"0eb62c705ce6ea72b9194ebddd4b6669f18d6ec3","after":"d00b0355dc8d9e387340106daf8111c5c0ad1012","ref":"refs/heads/main","pushedAt":"2024-09-05T15:45:22.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"ctz","name":"Joe Birr-Pixton","path":"/ctz","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/579363?s=80&v=4"},"commit":{"message":"Docs pass\n\nThis was motivated by the new `clippy::too_long_first_doc_paragraph`\nin clippy nightly.\n\nAside from fixing those, this also splits other long docs into\nparagraphs, fixes some parameter names, and adds some extra backticks\nin various places.","shortMessageHtmlLink":"Docs pass"}},{"before":"c5cf34c357d360a5c137d42ec09092e341b968d4","after":"d9d4415a4d94a41e0b4d9239bd3be569d426a2b3","ref":"refs/heads/jbp-gha-typo","pushedAt":"2024-09-05T15:43:11.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"ctz","name":"Joe Birr-Pixton","path":"/ctz","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/579363?s=80&v=4"},"commit":{"message":"pkg-config.yml: remove pkg-config install on mac\n\nThis was not necessary, and was actually unconditionally\nskipped.","shortMessageHtmlLink":"pkg-config.yml: remove pkg-config install on mac"}},{"before":"9630accc980c51acddabd2799f05fedb37aae23c","after":"bbac073b09dd0b3b832493dcf66887f747945e9b","ref":"refs/heads/jbp-docs-updates","pushedAt":"2024-09-05T11:56:06.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"ctz","name":"Joe Birr-Pixton","path":"/ctz","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/579363?s=80&v=4"},"commit":{"message":"Docs pass\n\nThis was motivated by the new `clippy::too_long_first_doc_paragraph`\nin clippy nightly.\n\nAside from fixing those, this also splits other long docs into\nparagraphs, fixes some parameter names, and adds some extra backticks\nin various places.","shortMessageHtmlLink":"Docs pass"}},{"before":"4036cdf321082c9149fa4dd620eaa60e26877fc2","after":"9630accc980c51acddabd2799f05fedb37aae23c","ref":"refs/heads/jbp-docs-updates","pushedAt":"2024-09-05T11:42:23.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"ctz","name":"Joe Birr-Pixton","path":"/ctz","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/579363?s=80&v=4"},"commit":{"message":"Docs pass\n\nThis was motivated by the new `clippy::too_long_first_doc_paragraph`\nin clippy nightly.\n\nAside from fixing those, this also splits other long docs into\nparagraphs, fixes some parameter names, and adds some extra backticks\nin various places.","shortMessageHtmlLink":"Docs pass"}},{"before":null,"after":"4036cdf321082c9149fa4dd620eaa60e26877fc2","ref":"refs/heads/jbp-docs-updates","pushedAt":"2024-09-05T11:41:39.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"ctz","name":"Joe Birr-Pixton","path":"/ctz","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/579363?s=80&v=4"},"commit":{"message":"Docs pass\n\nThis was motivated by the new `clippy::too_long_first_doc_paragraph`\nin clippy nightly.\n\nAside from fixing those, this also splits other long docs into\nparagraphs, fixes some parameter names, and adds some extra backticks\nin various places.","shortMessageHtmlLink":"Docs pass"}},{"before":null,"after":"c5cf34c357d360a5c137d42ec09092e341b968d4","ref":"refs/heads/jbp-gha-typo","pushedAt":"2024-09-05T10:17:21.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"ctz","name":"Joe Birr-Pixton","path":"/ctz","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/579363?s=80&v=4"},"commit":{"message":"pkg-config.yml: fix typo","shortMessageHtmlLink":"pkg-config.yml: fix typo"}},{"before":"b383f80bc8224e739501092c5e79c7021bf0ab55","after":null,"ref":"refs/heads/dependabot/cargo/rustls-platform-verifier-0.3.4","pushedAt":"2024-08-26T13:04:20.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"cpu","name":"Daniel McCarney","path":"/cpu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292650?s=80&v=4"}},{"before":"d2dd955d01c7fc2d53cff01c2ddffffa0805f73b","after":"0eb62c705ce6ea72b9194ebddd4b6669f18d6ec3","ref":"refs/heads/main","pushedAt":"2024-08-26T13:04:18.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cpu","name":"Daniel McCarney","path":"/cpu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292650?s=80&v=4"},"commit":{"message":"build(deps): bump rustls-platform-verifier from 0.3.3 to 0.3.4\n\nBumps [rustls-platform-verifier](https://github.com/rustls/rustls-platform-verifier) from 0.3.3 to 0.3.4.\n- [Release notes](https://github.com/rustls/rustls-platform-verifier/releases)\n- [Changelog](https://github.com/rustls/rustls-platform-verifier/blob/main/CHANGELOG)\n- [Commits](https://github.com/rustls/rustls-platform-verifier/compare/v/0.3.3...v/0.3.4)\n\n---\nupdated-dependencies:\n- dependency-name: rustls-platform-verifier\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump rustls-platform-verifier from 0.3.3 to 0.3.4"}},{"before":"7bdd262b726a11a5922e18bc8375b7c9f8254371","after":null,"ref":"refs/heads/dependabot/cargo/libc-0.2.158","pushedAt":"2024-08-26T13:02:55.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"cpu","name":"Daniel McCarney","path":"/cpu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292650?s=80&v=4"}},{"before":"1bc08dc778a5d1b9898114f826e69ed8664dbf01","after":"d2dd955d01c7fc2d53cff01c2ddffffa0805f73b","ref":"refs/heads/main","pushedAt":"2024-08-26T13:02:54.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"cpu","name":"Daniel McCarney","path":"/cpu","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/292650?s=80&v=4"},"commit":{"message":"build(deps): bump libc from 0.2.157 to 0.2.158\n\nBumps [libc](https://github.com/rust-lang/libc) from 0.2.157 to 0.2.158.\n- [Release notes](https://github.com/rust-lang/libc/releases)\n- [Changelog](https://github.com/rust-lang/libc/blob/0.2.158/CHANGELOG.md)\n- [Commits](https://github.com/rust-lang/libc/compare/0.2.157...0.2.158)\n\n---\nupdated-dependencies:\n- dependency-name: libc\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump libc from 0.2.157 to 0.2.158"}},{"before":null,"after":"b383f80bc8224e739501092c5e79c7021bf0ab55","ref":"refs/heads/dependabot/cargo/rustls-platform-verifier-0.3.4","pushedAt":"2024-08-26T02:09:38.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 rustls-platform-verifier from 0.3.3 to 0.3.4\n\nBumps [rustls-platform-verifier](https://github.com/rustls/rustls-platform-verifier) from 0.3.3 to 0.3.4.\n- [Release notes](https://github.com/rustls/rustls-platform-verifier/releases)\n- [Changelog](https://github.com/rustls/rustls-platform-verifier/blob/main/CHANGELOG)\n- [Commits](https://github.com/rustls/rustls-platform-verifier/compare/v/0.3.3...v/0.3.4)\n\n---\nupdated-dependencies:\n- dependency-name: rustls-platform-verifier\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump rustls-platform-verifier from 0.3.3 to 0.3.4"}},{"before":null,"after":"7bdd262b726a11a5922e18bc8375b7c9f8254371","ref":"refs/heads/dependabot/cargo/libc-0.2.158","pushedAt":"2024-08-20T02:36: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 libc from 0.2.157 to 0.2.158\n\nBumps [libc](https://github.com/rust-lang/libc) from 0.2.157 to 0.2.158.\n- [Release notes](https://github.com/rust-lang/libc/releases)\n- [Changelog](https://github.com/rust-lang/libc/blob/0.2.158/CHANGELOG.md)\n- [Commits](https://github.com/rust-lang/libc/compare/0.2.157...0.2.158)\n\n---\nupdated-dependencies:\n- dependency-name: libc\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump libc from 0.2.157 to 0.2.158"}},{"before":"f8ec1ea51c2f96e9a92d96ef30949b45808a6661","after":null,"ref":"refs/heads/dependabot/cargo/libc-0.2.157","pushedAt":"2024-08-19T11:44:00.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"ctz","name":"Joe Birr-Pixton","path":"/ctz","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/579363?s=80&v=4"}},{"before":"d4bba96dd093edabfe6435b09d8fc6db4b12bc4e","after":"1bc08dc778a5d1b9898114f826e69ed8664dbf01","ref":"refs/heads/main","pushedAt":"2024-08-19T11:43:58.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"ctz","name":"Joe Birr-Pixton","path":"/ctz","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/579363?s=80&v=4"},"commit":{"message":"build(deps): bump libc from 0.2.155 to 0.2.157\n\nBumps [libc](https://github.com/rust-lang/libc) from 0.2.155 to 0.2.157.\n- [Release notes](https://github.com/rust-lang/libc/releases)\n- [Changelog](https://github.com/rust-lang/libc/blob/0.2.157/CHANGELOG.md)\n- [Commits](https://github.com/rust-lang/libc/compare/0.2.155...0.2.157)\n\n---\nupdated-dependencies:\n- dependency-name: libc\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump libc from 0.2.155 to 0.2.157"}},{"before":"ba9971b5f40d1874862c0b59cab94f5409152245","after":null,"ref":"refs/heads/dependabot/cargo/libc-0.2.156","pushedAt":"2024-08-19T02:46:48.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":"f8ec1ea51c2f96e9a92d96ef30949b45808a6661","ref":"refs/heads/dependabot/cargo/libc-0.2.157","pushedAt":"2024-08-19T02:46:45.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 libc from 0.2.155 to 0.2.157\n\nBumps [libc](https://github.com/rust-lang/libc) from 0.2.155 to 0.2.157.\n- [Release notes](https://github.com/rust-lang/libc/releases)\n- [Changelog](https://github.com/rust-lang/libc/blob/0.2.157/CHANGELOG.md)\n- [Commits](https://github.com/rust-lang/libc/compare/0.2.155...0.2.157)\n\n---\nupdated-dependencies:\n- dependency-name: libc\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump libc from 0.2.155 to 0.2.157"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0yN1QxNjowODo0NC4wMDAwMDBazwAAAATCzHLX","endCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOC0xOVQwMjo0Njo0NS4wMDAwMDBazwAAAASdlPoQ"}},"title":"Activity · rustls/rustls-ffi"}