{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":302460887,"defaultBranch":"main","name":"libexpatpp","ownerLogin":"gittiver","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2020-10-08T21:00:56.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/142663?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1713628527.0","currentOid":""},"activityList":{"items":[{"before":"5596dcb36efd40ac85e1e6e6876c2cf68854d6ae","after":null,"ref":"refs/tags/v0.1.9","pushedAt":"2024-04-20T15:55:27.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gittiver","name":null,"path":"/gittiver","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/142663?s=80&v=4"}},{"before":"adca5dc4584581deb2ee269277eecc3158fc7e72","after":null,"ref":"refs/tags/0.1.13","pushedAt":"2024-03-21T14:03:53.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"gittiver","name":null,"path":"/gittiver","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/142663?s=80&v=4"}},{"before":"8295b57fc4dedea9bd5f8e7ff71ea1c65efd3c62","after":"bad997636c209fc907606dec24017d60f1b0b32b","ref":"refs/heads/gh-pages","pushedAt":"2024-03-21T14:01:51.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Deploying to gh-pages from @ gittiver/libexpatpp@5596dcb36efd40ac85e1e6e6876c2cf68854d6ae ๐Ÿš€","shortMessageHtmlLink":"Deploying to gh-pages from @ 5596dcb ๐Ÿš€"}},{"before":"d2bc43235e6ac07a631d6967333de9bb5431812e","after":"5596dcb36efd40ac85e1e6e6876c2cf68854d6ae","ref":"refs/heads/main","pushedAt":"2024-03-21T14:01:14.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gittiver","name":null,"path":"/gittiver","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/142663?s=80&v=4"},"commit":{"message":"new release - updated version to 0.1.8","shortMessageHtmlLink":"new release - updated version to 0.1.8"}},{"before":"73c6d649e3201de60597286577522f3f3f06a42f","after":"d2bc43235e6ac07a631d6967333de9bb5431812e","ref":"refs/heads/main","pushedAt":"2024-03-21T13:59:49.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gittiver","name":null,"path":"/gittiver","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/142663?s=80&v=4"},"commit":{"message":"updated expat lib to v2.6.2","shortMessageHtmlLink":"updated expat lib to v2.6.2"}},{"before":"9f7df4bf2e356188ac0c5a4746e89217c3c69e3e","after":"8295b57fc4dedea9bd5f8e7ff71ea1c65efd3c62","ref":"refs/heads/gh-pages","pushedAt":"2024-03-21T13:52:58.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Deploying to gh-pages from @ gittiver/libexpatpp@73c6d649e3201de60597286577522f3f3f06a42f ๐Ÿš€","shortMessageHtmlLink":"Deploying to gh-pages from @ 73c6d64 ๐Ÿš€"}},{"before":"5f7f54731341c4a69cb1ed6d63c19c1a4b6c57a9","after":"73c6d649e3201de60597286577522f3f3f06a42f","ref":"refs/heads/main","pushedAt":"2024-03-21T13:52:24.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gittiver","name":null,"path":"/gittiver","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/142663?s=80&v=4"},"commit":{"message":"fix gcc13 compiler error since cstdint is not included on aarch64\n\nThe header includes have changed in compiler versions resulting in\nuint8_t being undefined in the later compilers\n\n In file included from glibexpatpp/src/xmlparser.cpp:8:\n glibexpatpp/src/xmlparser.hpp:16:8: warning: elaborated-type-specifier for a scoped enum must not use the 'class' keyword\n 16 | enum class result : uint8_t {\n | ~~~~ ^~~~~\n | -----\n glibexpatpp/src/xmlparser.hpp:16:14: error: use of enum 'result' without previous declaration\n 16 | enum class result : uint8_t {\n | ^~~~~~\n glibexpatpp/src/xmlparser.hpp:16:23: error: 'uint8_t' was not declared in this scope\n 16 | enum class result : uint8_t {\n | ^~~~~~~\n glibexpatpp/src/xmlparser.hpp:10:1: note: 'uint8_t' is defined in header ''; did you forget to '#include '?\n 9 | #include \"delegate.hpp\"\n +++ |+#include \n 10 | namespace xmlpp {\n glibexpatpp/src/xmlparser.hpp:16:31: error: default member initializer for unnamed bit-field\n 16 | enum class result : uint8_t {\n | ^\n glibexpatpp/src/xmlparser.hpp:78:10: error: 'result' does not name a type\n 78 | static result parseString(const char*pszString, delegate& delegate);\n | ^~~~~~\n glibexpatpp/src/xmlparser.hpp:79:10: error: 'result' does not name a type\n 79 | static result parseFile(const std::string& filename, delegate& delegate);\n | ^~~~~~\n glibexpatpp/src/xmlparser.cpp:235:16: error: 'result' in 'class xmlpp::parser' does not name a type\n 235 | xmlpp::parser::result parser::parseString(const char* pszString,\n | ^~~~~~\n glibexpatpp/src/xmlparser.cpp:262:16: error: 'result' in 'class xmlpp::parser' does not name a type\n 262 | xmlpp::parser::result parser::parseFile(const std::string& filename,\n | ^~~~~~\n make[7]: *** [CMakeFiles/expatpp.dir/build.make:76: CMakeFiles/expatpp.dir/src/xmlparser.cpp.o] Error 1\n\nSigned-off-by: Charles Hardin ","shortMessageHtmlLink":"fix gcc13 compiler error since cstdint is not included on aarch64"}},{"before":"3a3f081d400f3d6e7fe57f2e88d7fc1dd1d9779a","after":"5f7f54731341c4a69cb1ed6d63c19c1a4b6c57a9","ref":"refs/heads/main","pushedAt":"2024-02-12T19:35:06.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gittiver","name":null,"path":"/gittiver","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/142663?s=80&v=4"},"commit":{"message":"updated libexpat to version 2.6.0","shortMessageHtmlLink":"updated libexpat to version 2.6.0"}},{"before":"3a3f081d400f3d6e7fe57f2e88d7fc1dd1d9779a","after":"5f7f54731341c4a69cb1ed6d63c19c1a4b6c57a9","ref":"refs/heads/develop","pushedAt":"2024-02-12T19:33:48.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gittiver","name":null,"path":"/gittiver","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/142663?s=80&v=4"},"commit":{"message":"updated libexpat to version 2.6.0","shortMessageHtmlLink":"updated libexpat to version 2.6.0"}},{"before":"8b901e8cbdb972d8136644a3d32447286c5c206b","after":"3a3f081d400f3d6e7fe57f2e88d7fc1dd1d9779a","ref":"refs/heads/develop","pushedAt":"2023-10-08T17:10:26.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gittiver","name":null,"path":"/gittiver","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/142663?s=80&v=4"},"commit":{"message":"Bump actions/checkout from 3 to 4\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v3...v4)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump actions/checkout from 3 to 4"}},{"before":"899ff185749b81b3216333b3c595bd18580274f9","after":null,"ref":"refs/heads/dependabot/github_actions/actions/checkout-4","pushedAt":"2023-09-05T06:42:55.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":"8b901e8cbdb972d8136644a3d32447286c5c206b","after":"3a3f081d400f3d6e7fe57f2e88d7fc1dd1d9779a","ref":"refs/heads/main","pushedAt":"2023-09-05T06:42:47.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"gittiver","name":null,"path":"/gittiver","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/142663?s=80&v=4"},"commit":{"message":"Bump actions/checkout from 3 to 4\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v3...v4)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump actions/checkout from 3 to 4"}},{"before":null,"after":"899ff185749b81b3216333b3c595bd18580274f9","ref":"refs/heads/dependabot/github_actions/actions/checkout-4","pushedAt":"2023-09-05T04:20: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":"Bump actions/checkout from 3 to 4\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v3...v4)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump actions/checkout from 3 to 4"}},{"before":"fad4f435c781566cb165eca60412ffbdfdd00f34","after":"8b901e8cbdb972d8136644a3d32447286c5c206b","ref":"refs/heads/develop","pushedAt":"2023-04-30T10:48:18.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"gittiver","name":null,"path":"/gittiver","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/142663?s=80&v=4"},"commit":{"message":"fix msvc compiler warnings","shortMessageHtmlLink":"fix msvc compiler warnings"}},{"before":"e37df8c5ad45b1d693e491583c1350692bfb235e","after":"8b901e8cbdb972d8136644a3d32447286c5c206b","ref":"refs/heads/main","pushedAt":"2023-03-17T16:08:51.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gittiver","name":null,"path":"/gittiver","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/142663?s=80&v=4"},"commit":{"message":"fix msvc compiler warnings","shortMessageHtmlLink":"fix msvc compiler warnings"}},{"before":"fad4f435c781566cb165eca60412ffbdfdd00f34","after":"e37df8c5ad45b1d693e491583c1350692bfb235e","ref":"refs/heads/main","pushedAt":"2023-03-17T15:42:07.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"gittiver","name":null,"path":"/gittiver","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/142663?s=80&v=4"},"commit":{"message":"adapted to newer cmake version (fixes MSVC warning for /W3 and /W4)","shortMessageHtmlLink":"adapted to newer cmake version (fixes MSVC warning for /W3 and /W4)"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAENeYaSAA","startCursor":null,"endCursor":null}},"title":"Activity ยท gittiver/libexpatpp"}