{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":54168759,"defaultBranch":"master","name":"Rocket","ownerLogin":"rwf2","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2016-03-18T02:50:18.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/106361765?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1717476850.0","currentOid":""},"activityList":{"items":[{"before":null,"after":"2960894626ac9c0ca165624f402ede027f5aad77","ref":"refs/heads/wildcard-method","pushedAt":"2024-06-04T04:54:10.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"wip: support routes that match all methods","shortMessageHtmlLink":"wip: support routes that match all methods"}},{"before":"926e06ef3c52d32ec816849cb9a8abebd888fcfe","after":"4a00c1fe7793c0a1ede33882540cd45be3804ba4","ref":"refs/heads/master","pushedAt":"2024-06-04T03:14:07.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"Improve 'Error' type: make 'ErrorKind' accessible.\n\nThis commit improves the 'Error' type such that:\n - It is now fully documented.\n - The `ErrorKind` enum variant fields are all publicly reachable.\n - The `Sentry` type is exposed.\n\nThis is a breaking change:\n - `ErrorKind::Collisions` is now struct-like with two fields.","shortMessageHtmlLink":"Improve 'Error' type: make 'ErrorKind' accessible."}},{"before":"926e06ef3c52d32ec816849cb9a8abebd888fcfe","after":null,"ref":"refs/heads/tracing","pushedAt":"2024-06-04T00:17:53.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"}},{"before":"120d1e78da4358621014fe8a20a2024a64696ef9","after":"926e06ef3c52d32ec816849cb9a8abebd888fcfe","ref":"refs/heads/master","pushedAt":"2024-06-04T00:17:38.000Z","pushType":"push","commitsCount":9,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"Finalize 'tracing' migration.\n\nThis commit complete the migration to 'tracing' for all logging. Below\nis a summary of all relevant commits, including this one:\n\nLog improvements:\n - All log (trace) messages are structured which means they contain fields\n that can formatted by any subscriber.\n - Logging can be disabled entirely by disabling the default `trace` feature.\n - Routes and catchers now contain location (file/line) information.\n - Two log format kinds: pretty and compact via ROCKET_LOG_FORMAT\n - Coloring is not disabled globally. Thus applications can color even if\n Rocket is configured not to.\n - Rocket is more conservative about 'warn' and 'error' messages, reserving\n those log levels for messages useful in production.\n - Errors from guards logged by codegen now use the 'Display' implementation of\n those errors when one exists.\n - Secrets are never logged, even when directly asked for.\n\nNew features:\n - Many Rocket types know how to trace themselves via a new `Trace` trait.\n - `Either` types can now be used in `uri!()` calls.\n - A `RequestIdLayer` tags all requests with a unique ID.\n\nBreaking changes to configuration:\n - `Config::log_level` is of type `Option`. `None` disables tracing.\n - `log_level` now uses the traditional log level names: \"off\", \"error\",\n \"warn\", \"info\", \"debug\", \"trace\", or 0-5. This replace the Rocket-specific\n \"normal\", \"debug\", \"critical\".\n - A new option, `log_format`, which is either `compact` or `pretty`,\n determines how Rocket's tracing subscriber log trace messages.\n\nBreaking changes:\n - Hidden `rocket::Either` is now publicly available at `rocket::either::Either`.\n - `rocket::Error` no longer panics when dropped.\n - `main` generated by `#[launch]` returns an `ExitCode`.\n - `FromParam` `Err` now always returns the actual error as opposed to the\n string that failed to parse. To recover the original string, use `Either`, where `T: FromParam`, as a parameter guard.\n - Many types that implemented `Display` now instead implement `Trace`.\n - `Error::pretty_print()` was removed. Use `Error::trace()` via `Trace` impl.\n\nInternal improvements:\n - Made more space in CI machines for tasks.\n - Cleaned up testbench code using `inventory`.\n\nResolves #21.","shortMessageHtmlLink":"Finalize 'tracing' migration."}},{"before":"110c15b705c22078f087550e1c964feedffef07a","after":"926e06ef3c52d32ec816849cb9a8abebd888fcfe","ref":"refs/heads/tracing","pushedAt":"2024-06-03T22:02:59.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"Finalize 'tracing' migration.\n\nThis commit complete the migration to 'tracing' for all logging. Below\nis a summary of all relevant commits, including this one:\n\nLog improvements:\n - All log (trace) messages are structured which means they contain fields\n that can formatted by any subscriber.\n - Logging can be disabled entirely by disabling the default `trace` feature.\n - Routes and catchers now contain location (file/line) information.\n - Two log format kinds: pretty and compact via ROCKET_LOG_FORMAT\n - Coloring is not disabled globally. Thus applications can color even if\n Rocket is configured not to.\n - Rocket is more conservative about 'warn' and 'error' messages, reserving\n those log levels for messages useful in production.\n - Errors from guards logged by codegen now use the 'Display' implementation of\n those errors when one exists.\n - Secrets are never logged, even when directly asked for.\n\nNew features:\n - Many Rocket types know how to trace themselves via a new `Trace` trait.\n - `Either` types can now be used in `uri!()` calls.\n - A `RequestIdLayer` tags all requests with a unique ID.\n\nBreaking changes to configuration:\n - `Config::log_level` is of type `Option`. `None` disables tracing.\n - `log_level` now uses the traditional log level names: \"off\", \"error\",\n \"warn\", \"info\", \"debug\", \"trace\", or 0-5. This replace the Rocket-specific\n \"normal\", \"debug\", \"critical\".\n - A new option, `log_format`, which is either `compact` or `pretty`,\n determines how Rocket's tracing subscriber log trace messages.\n\nBreaking changes:\n - Hidden `rocket::Either` is now publicly available at `rocket::either::Either`.\n - `rocket::Error` no longer panics when dropped.\n - `main` generated by `#[launch]` returns an `ExitCode`.\n - `FromParam` `Err` now always returns the actual error as opposed to the\n string that failed to parse. To recover the original string, use `Either`, where `T: FromParam`, as a parameter guard.\n - Many types that implemented `Display` now instead implement `Trace`.\n - `Error::pretty_print()` was removed. Use `Error::trace()` via `Trace` impl.\n\nInternal improvements:\n - Made more space in CI machines for tasks.\n - Cleaned up testbench code using `inventory`.\n\nResolves #21.","shortMessageHtmlLink":"Finalize 'tracing' migration."}},{"before":"1b285697388efbc42e3036e12bbe18d072b7c306","after":"110c15b705c22078f087550e1c964feedffef07a","ref":"refs/heads/tracing","pushedAt":"2024-06-03T21:39:39.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"Finalize 'tracing' migration.\n\nThis commit complete the migration to 'tracing' for all logging. Below\nis a summary of all relevant commits, including this one:\n\nLog improvements:\n - All log (trace) messages are structured which means they contain fields\n that can formatted by any subscriber.\n - Logging can be disabled entirely by disabling the default `trace` feature.\n - Routes and catchers now contain location (file/line) information.\n - Two log format kinds: pretty and compact via ROCKET_LOG_FORMAT\n - Coloring is not disabled globally. Thus applications can color even if\n Rocket is configured not to.\n - Rocket is more conservative about 'warn' and 'error' messages, reserving\n those log levels for messages useful in production.\n - Errors from guards logged by codegen now use the 'Display' implementation of\n those errors when one exists.\n - Secrets are never logged, even when directly asked for.\n\nNew features:\n - Many Rocket types know how to trace themselves via a new `Trace` trait.\n - `Either` types can now be used in `uri!()` calls.\n - A `RequestIdLayer` tags all requests with a unique ID.\n\nBreaking changes to configuration:\n - `Config::log_level` is of type `Option`. `None` disables tracing.\n - `log_level` now uses the traditional log level names: \"off\", \"error\",\n \"warn\", \"info\", \"debug\", \"trace\", or 0-5. This replace the Rocket-specific\n \"normal\", \"debug\", \"critical\".\n - A new option, `log_format`, which is either `compact` or `pretty`,\n determines how Rocket's tracing subscriber log trace messages.\n\nBreaking changes:\n - Hidden `rocket::Either` is now publicly available at `rocket::either::Either`.\n - `rocket::Error` no longer panics when dropped.\n - `main` generated by `#[launch]` returns an `ExitCode`.\n - `FromParam` `Err` now always returns the actual error as opposed to the\n string that failed to parse. To recover the original string, use `Either`, where `T: FromParam`, as a parameter guard.\n - Many types that implemented `Display` now instead implement `Trace`.\n - `Error::pretty_print()` was removed. Use `Error::trace()` via `Trace` impl.\n\nInternal improvements:\n - Made more space in CI machines for tasks.\n - Cleaned up testbench code using `inventory`.\n\nResolves #21.","shortMessageHtmlLink":"Finalize 'tracing' migration."}},{"before":"120a7788566996cd6f38d2786814a0a057ac223b","after":"1b285697388efbc42e3036e12bbe18d072b7c306","ref":"refs/heads/tracing","pushedAt":"2024-05-31T19:35:38.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"wip: update and fix UI tests","shortMessageHtmlLink":"wip: update and fix UI tests"}},{"before":"b12cc56141c007327e4a819cc5a22f8552068b1a","after":"c303add07fe15520654aa388e6f387979704b1d5","ref":"refs/heads/v0.5","pushedAt":"2024-05-29T23:07:40.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"Fix redirector in TLS example.\n\nResolves #2795.","shortMessageHtmlLink":"Fix redirector in TLS example."}},{"before":"2a1afd12f57ca435cf9018ddb08051bdc31aef6e","after":"120d1e78da4358621014fe8a20a2024a64696ef9","ref":"refs/heads/master","pushedAt":"2024-05-29T20:22:44.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"Generate deterministic names for 'uri' macros.","shortMessageHtmlLink":"Generate deterministic names for 'uri' macros."}},{"before":"091c6f58f66882270e2112e059cd05df00a85f26","after":"2a1afd12f57ca435cf9018ddb08051bdc31aef6e","ref":"refs/heads/master","pushedAt":"2024-05-23T20:48:58.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"Add 0.5.1 CHANGELOG entry.","shortMessageHtmlLink":"Add 0.5.1 CHANGELOG entry."}},{"before":"f53611f74f2c777b9d7ebb40f8ec3f8dadd0a6f6","after":"b12cc56141c007327e4a819cc5a22f8552068b1a","ref":"refs/heads/v0.5","pushedAt":"2024-05-23T20:48:19.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"Fix typo in CHANGELOG.","shortMessageHtmlLink":"Fix typo in CHANGELOG."}},{"before":"34321b418ff5ea1ae3cdf8e7891cbe51c3ce14c7","after":"f53611f74f2c777b9d7ebb40f8ec3f8dadd0a6f6","ref":"refs/heads/v0.5","pushedAt":"2024-05-23T20:36:27.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"Add CHANGELOG for 0.5.1.","shortMessageHtmlLink":"Add CHANGELOG for 0.5.1."}},{"before":"29e7093ef4de592bf70ab7263e7a997b0ffff58f","after":"34321b418ff5ea1ae3cdf8e7891cbe51c3ce14c7","ref":"refs/heads/v0.5","pushedAt":"2024-05-23T01:45:40.000Z","pushType":"push","commitsCount":10,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"New version: rocket_ws 0.1.1.","shortMessageHtmlLink":"New version: rocket_ws 0.1.1."}},{"before":"cde1fb5de0eb844f59da3ebaadb3f20053748ee1","after":"091c6f58f66882270e2112e059cd05df00a85f26","ref":"refs/heads/master","pushedAt":"2024-05-23T00:48:50.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"Update 'deadpool' and related databases to 0.13.","shortMessageHtmlLink":"Update 'deadpool' and related databases to 0.13."}},{"before":"9e3f9ae00f82abbff6429b387e730c2a305b36fa","after":"cde1fb5de0eb844f59da3ebaadb3f20053748ee1","ref":"refs/heads/master","pushedAt":"2024-05-22T22:16:10.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"Improve example TOML in configuration guide.","shortMessageHtmlLink":"Improve example TOML in configuration guide."}},{"before":"3079dbfa852a37131c505ff4a08475dbbf36ac50","after":"9e3f9ae00f82abbff6429b387e730c2a305b36fa","ref":"refs/heads/master","pushedAt":"2024-05-22T20:15:06.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"Update 'minijinja' to 2.0.","shortMessageHtmlLink":"Update 'minijinja' to 2.0."}},{"before":"c8b945c9824c5cc5803908476fa12b49fd94f609","after":"29e7093ef4de592bf70ab7263e7a997b0ffff58f","ref":"refs/heads/v0.5","pushedAt":"2024-05-22T19:14:46.000Z","pushType":"push","commitsCount":14,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"Impl 'FromForm' for char, 'Range' types.\n\nImplements 'FromForm' for:\n\n * `char`\n * `Range`\n * `RangeFrom`\n * `RangeTo`\n * `RangeToInclusive`\n\nResolves #2759.","shortMessageHtmlLink":"Impl 'FromForm' for char, 'Range' types."}},{"before":"ba82c14e7f747cbffaa355a42fc785b9cb46b9c7","after":"120a7788566996cd6f38d2786814a0a057ac223b","ref":"refs/heads/tracing","pushedAt":"2024-05-21T16:17:05.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"wip: fix remaining fallout","shortMessageHtmlLink":"wip: fix remaining fallout"}},{"before":"7bc2fea0a4c944310c15a8c510ab7563597a978f","after":"ba82c14e7f747cbffaa355a42fc785b9cb46b9c7","ref":"refs/heads/tracing","pushedAt":"2024-05-21T07:13:50.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"wip: fix remaining fallout","shortMessageHtmlLink":"wip: fix remaining fallout"}},{"before":"5c7b06f225ba3de9299b35d613b1a0897ac05203","after":"7bc2fea0a4c944310c15a8c510ab7563597a978f","ref":"refs/heads/tracing","pushedAt":"2024-05-21T04:50:41.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"wip: fix tracing macro exports","shortMessageHtmlLink":"wip: fix tracing macro exports"}},{"before":"6f1c2a75ce52eeeb27272256e6861f82d0ddd0a0","after":"5c7b06f225ba3de9299b35d613b1a0897ac05203","ref":"refs/heads/tracing","pushedAt":"2024-05-20T18:41:38.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"wip: FIXME notes","shortMessageHtmlLink":"wip: FIXME notes"}},{"before":"370287c9a6c4b81d81eafeab4220eab96941f0b5","after":"3079dbfa852a37131c505ff4a08475dbbf36ac50","ref":"refs/heads/master","pushedAt":"2024-05-20T18:39:55.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"Use workspace lints. Resolve new nightly warnings.","shortMessageHtmlLink":"Use workspace lints. Resolve new nightly warnings."}},{"before":"07cb899a2f269c66fd290efb651c05d57a3b2696","after":"6f1c2a75ce52eeeb27272256e6861f82d0ddd0a0","ref":"refs/heads/tracing","pushedAt":"2024-05-20T05:16:05.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"wip: testbench, locations, display hack, either\n\ndisplay hack: when guard errors occur, log the error message with\n`Display` if an impl exists, falling back to `Debug` otherwise\n\nitem locations: log the file and line for catchers and routes\n\neither: impls `FromParam` for `Either`. changes the implementation of\n`FromParam` for all `T: FromStr` to return the actual error when the\nconversion fails instead of the previous `&str` for the value that\nfailed to parse. This results in better log error messages on guard\nfailure. To regain the ability to recover the value that failed to\nparse, `FromParam` was implemented for `Either`; `Either`\ncan be used as the previous `Result` could, with the benefit\nthat it now works for all `T`. `FromUriParam` and `UriDisplay` were also\nimplemented for `Either`.\n\ntestbench: fix the testbench for new logging and test that display hack\nworks as intended for both `T: Display` and `T: !Display + Debug`.","shortMessageHtmlLink":"wip: testbench, locations, display hack, either"}},{"before":"c77d2c45fa99415fd08df20e5cc63fe9968d0680","after":"07cb899a2f269c66fd290efb651c05d57a3b2696","ref":"refs/heads/tracing","pushedAt":"2024-05-17T03:23:35.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"wip: re-enable testbench.","shortMessageHtmlLink":"wip: re-enable testbench."}},{"before":"cf80426bc7ea0ed9a4382414fa04ef4a9cf713cb","after":"c77d2c45fa99415fd08df20e5cc63fe9968d0680","ref":"refs/heads/tracing","pushedAt":"2024-05-17T02:16:12.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"wip: rename traceable to trace","shortMessageHtmlLink":"wip: rename traceable to trace"}},{"before":"c5979c56439b8b94179bf180abb27bdb3a0d6da3","after":"cf80426bc7ea0ed9a4382414fa04ef4a9cf713cb","ref":"refs/heads/tracing","pushedAt":"2024-05-17T02:04:19.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"wip: log matching item in compact mode","shortMessageHtmlLink":"wip: log matching item in compact mode"}},{"before":"67485ba8d705334f0bedd037042207cbb50871c6","after":"c5979c56439b8b94179bf180abb27bdb3a0d6da3","ref":"refs/heads/tracing","pushedAt":"2024-05-17T01:19:18.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"wip: allow dynamic selection of log fmt","shortMessageHtmlLink":"wip: allow dynamic selection of log fmt"}},{"before":"d3ba026062b296eb191ab00d686949d5b1595c5c","after":"67485ba8d705334f0bedd037042207cbb50871c6","ref":"refs/heads/tracing","pushedAt":"2024-05-16T02:05:32.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"wip: document the trace feature","shortMessageHtmlLink":"wip: document the trace feature"}},{"before":"fcc354c4804d385aaa96d19fa133d1d48ccdef83","after":"d3ba026062b296eb191ab00d686949d5b1595c5c","ref":"refs/heads/tracing","pushedAt":"2024-05-16T01:57:15.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"wip: fix trace exports","shortMessageHtmlLink":"wip: fix trace exports"}},{"before":"ac2e8db63faabc8eb3fd4e524fe4b8e2b64c9e57","after":"fcc354c4804d385aaa96d19fa133d1d48ccdef83","ref":"refs/heads/tracing","pushedAt":"2024-05-16T01:20:54.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"SergioBenitez","name":"Sergio Benitez","path":"/SergioBenitez","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1480321?s=80&v=4"},"commit":{"message":"wip: remove all uses of old log macros","shortMessageHtmlLink":"wip: remove all uses of old log macros"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEW50glwA","startCursor":null,"endCursor":null}},"title":"Activity ยท rwf2/Rocket"}