{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":843614036,"defaultBranch":"master","name":"OpenBMC-sdbusplus","ownerLogin":"PLC2","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2024-08-16T23:15:46.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/29566667?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1723850153.309113","currentOid":""},"activityList":{"items":[{"before":"d925c0bc5d0baa8702dcfcb5e11609e52ed7e86c","after":"ebe01794cde319728a1734d88f9ff61f597c707b","ref":"refs/heads/master","pushedAt":"2024-09-26T06:39:23.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"Paebbels","name":"Patrick Lehmann","path":"/Paebbels","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/956109?s=80&v=4"},"commit":{"message":"sdbus++: events: simplify constructor\n\nConsolidate consteval_string usage to simplify the generated code.\n\nSigned-off-by: Patrick Williams \nChange-Id: I6340eb369c117bb580a128e5338113a4b38a0f80","shortMessageHtmlLink":"sdbus++: events: simplify constructor"}},{"before":"093034c9225ae39c161e3abcfe4b56bda44ef0fb","after":"d925c0bc5d0baa8702dcfcb5e11609e52ed7e86c","ref":"refs/heads/master","pushedAt":"2024-09-25T06:39:26.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"Paebbels","name":"Patrick Lehmann","path":"/Paebbels","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/956109?s=80&v=4"},"commit":{"message":"sdbus++: events: generate exception constructors\n\nGenerate constructors for exceptions using the listed metadata.\n\nSigned-off-by: Patrick Williams \nChange-Id: I99dc912e4ad0746a14d3053a5653327ae12440dd","shortMessageHtmlLink":"sdbus++: events: generate exception constructors"}},{"before":"e44f194cebde7f313e8ba97bea586e3ed157bccb","after":"093034c9225ae39c161e3abcfe4b56bda44ef0fb","ref":"refs/heads/master","pushedAt":"2024-09-24T06:39:50.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"Paebbels","name":"Patrick Lehmann","path":"/Paebbels","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/956109?s=80&v=4"},"commit":{"message":"sdbus++: events: handle redfish-mapping events\n\nHandle loading events with redfish-mapping without crashing.\n\nSigned-off-by: Patrick Williams \nChange-Id: I4140e948d938c775e52d41ec65793a70364ab831","shortMessageHtmlLink":"sdbus++: events: handle redfish-mapping events"}},{"before":"88c6a8237f03409a7ec9a95f79d03fc67f5f94bd","after":"e44f194cebde7f313e8ba97bea586e3ed157bccb","ref":"refs/heads/master","pushedAt":"2024-09-20T06:38:04.000Z","pushType":"push","commitsCount":8,"pusher":{"login":"Paebbels","name":"Patrick Lehmann","path":"/Paebbels","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/956109?s=80&v=4"},"commit":{"message":"example: remove Calculator.errors.yaml\n\nExample is moved to use the new event framework so there is no need\nfor this YAML.\n\nSigned-off-by: Patrick Williams \nChange-Id: I1ce615c695646bd97f8c9d87c2c64a70a62adf14","shortMessageHtmlLink":"example: remove Calculator.errors.yaml"}},{"before":"6ea10e0452bf3050a0f29f669573a67572fd019f","after":"88c6a8237f03409a7ec9a95f79d03fc67f5f94bd","ref":"refs/heads/master","pushedAt":"2024-09-12T06:37:36.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"Paebbels","name":"Patrick Lehmann","path":"/Paebbels","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/956109?s=80&v=4"},"commit":{"message":"message: Fix unpack void type\n\nThe template unpack is deduced as one argument instead of 0, and\nresults in below compile error:\n```\nerror: variable or field ‘r’ declared void\nerror: return-statement with a value, in function returning ‘void’ [-fpermissive]\n```\n\nFix this by checking void if `sizeof...(Args) == 1` and return void.\nAlso add a unit test case to make sure the code compiles.\n\nChange-Id: I74cca180783645496863393be37215f1d6f4ca02\nSigned-off-by: Lei YU ","shortMessageHtmlLink":"message: Fix unpack void type"}},{"before":"ec40c495fb0d4aa6e35381005c929b44b182b5cb","after":"6ea10e0452bf3050a0f29f669573a67572fd019f","ref":"refs/heads/master","pushedAt":"2024-09-10T06:36:55.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"Paebbels","name":"Patrick Lehmann","path":"/Paebbels","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/956109?s=80&v=4"},"commit":{"message":"asio: Fix read into tuple response\n\nSome DBus methods return multiple elements, e.g.\n`org.freedesktop.resolve1` has a method `ResolveHostname` that returns\nthe result type `a(iiay)st`, which could not be \"read()\" directly as a\ntuple.\n\nThe code was using a tuple to represent the multiple elements, and use\n`r.read(responseData)` that would result in \"Invalid Argument\" error.\n\nFix it by `message::unpack` API to correctly read the response and\nunpack the multiple elements into the tuple.\n\nChange-Id: I83eb83abf0b079ebf94c1a51a40640533ab04a9f\nSigned-off-by: Lei YU ","shortMessageHtmlLink":"asio: Fix read into tuple response"}},{"before":"8d40adadedfe88bb4e005ce95b378f4e1d0911ea","after":"ec40c495fb0d4aa6e35381005c929b44b182b5cb","ref":"refs/heads/master","pushedAt":"2024-09-06T06:36:37.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"Paebbels","name":"Patrick Lehmann","path":"/Paebbels","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/956109?s=80&v=4"},"commit":{"message":"sdbus++: events: add schema\n\nAdd jsonschema for new error and event design[1]. Schema is based\non the schema originally in the document but enhanced for better\nschema validation of required and/or conflicting properties.\n\n[1]: https://github.com/openbmc/docs/blob/master/designs/event-logging.md\n\nSigned-off-by: Patrick Williams \nChange-Id: Ic64a98825080d990d904b788cfaed45b91e8a39e","shortMessageHtmlLink":"sdbus++: events: add schema"}},{"before":"06f265f6f18e22b1fb68761edb50ecd6722c2a47","after":"8d40adadedfe88bb4e005ce95b378f4e1d0911ea","ref":"refs/heads/master","pushedAt":"2024-08-23T06:34:30.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"Paebbels","name":"Patrick Lehmann","path":"/Paebbels","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/956109?s=80&v=4"},"commit":{"message":"transaction: fix -Wconversion c++ warning\n\nBuilding sdbusplus by meson subproject as a part of external project\ncontains compile warning which can be interpreted as compile error (if\nexternal project defines both `-Werror` and `-Wconversion`)\n\nChanging the `Transaction::time` property type to the appropriate\n`std::time_t` will solve the issue.\n\nChange-Id: I9ab42472ff361aab9487c73d7804531151986e4c\nSigned-off-by: Igor Kononenko ","shortMessageHtmlLink":"transaction: fix -Wconversion c++ warning"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0yNlQwNjozOToyMy4wMDAwMDBazwAAAATBHl9n","endCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOC0yM1QwNjozNDozMC4wMDAwMDBazwAAAASiCDmq"}},"title":"Activity · PLC2/OpenBMC-sdbusplus"}