{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":234458104,"defaultBranch":"master","name":"bifrost","ownerLogin":"ClessLi","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2020-01-17T02:55:46.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/37110067?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1713922844.0","currentOid":""},"activityList":{"items":[{"before":"4c0dcaf106d12d4773feaba3e06eb3b5db2c8e9d","after":"7f313847becb47572cafd36ed978d71231cb4d9b","ref":"refs/heads/feature/resolv-v3","pushedAt":"2024-04-24T01:48:34.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"docs(readme): modify the latest available version number.","shortMessageHtmlLink":"docs(readme): modify the latest available version number."}},{"before":"4c0dcaf106d12d4773feaba3e06eb3b5db2c8e9d","after":"7f313847becb47572cafd36ed978d71231cb4d9b","ref":"refs/heads/develop","pushedAt":"2024-04-24T01:48:06.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"docs(readme): modify the latest available version number.","shortMessageHtmlLink":"docs(readme): modify the latest available version number."}},{"before":"4c0dcaf106d12d4773feaba3e06eb3b5db2c8e9d","after":"7f313847becb47572cafd36ed978d71231cb4d9b","ref":"refs/heads/master","pushedAt":"2024-04-24T01:47:34.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"docs(readme): modify the latest available version number.","shortMessageHtmlLink":"docs(readme): modify the latest available version number."}},{"before":"b8ca6e863838dff92359dc8cab552265ab81e563","after":"7f313847becb47572cafd36ed978d71231cb4d9b","ref":"refs/heads/release/1.0.12","pushedAt":"2024-04-24T01:46:25.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"docs(readme): modify the latest available version number.","shortMessageHtmlLink":"docs(readme): modify the latest available version number."}},{"before":null,"after":"b8ca6e863838dff92359dc8cab552265ab81e563","ref":"refs/heads/release/1.0.12","pushedAt":"2024-04-24T01:40:44.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"docs(changelog): add `CHANGELOG-1.0.12.md`","shortMessageHtmlLink":"docs(changelog): add CHANGELOG-1.0.12.md"}},{"before":"669a5097dcb8b1a8853515330e6a721ab968d19a","after":"4c0dcaf106d12d4773feaba3e06eb3b5db2c8e9d","ref":"refs/heads/master","pushedAt":"2024-04-24T01:12:17.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"feat(resolv): refactored the `Context` `JSON` format serialization structure to simplify serialization/deserialization operations, making the serialization structure more universal and unified.\n\nBREAKING CHANGE: Changed the serialization structure of the `Context` `JSON` format, as well as the new functions for the `Directive` and `Comment` context objects.\n\nThe `Context` `JSON` format serialization structure changes as follows:\n\nBefore:\n\n```json\n{\n \"main-config\": \"C:\\\\test\\\\test.conf\",\n \"configs\":\n {\n \"C:\\\\test\\\\test.conf\":\n [\n {\n \"http\":\n {\n \"params\":\n [\n {\n \"inline\": true, \"comments\": \"test comment\"\n },\n {\n \"server\":\n {\n \"params\":\n [\n {\n \"directive\": \"server_name\", \"params\": \"testserver\"\n },\n {\n \"location\": {\"value\": \"~ /test\"}\n },\n {\n \"include\":\n {\n \"value\": \"conf.d\\\\include*conf\",\n \"params\": [\"conf.d\\\\include.location1.conf\", \"conf.d\\\\include.location2.conf\"]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"conf.d\\\\include.location1.conf\":\n [\n {\n \"location\": {\"value\": \"~ /test1\"}\n }\n ],\n \"conf.d\\\\include.location2.conf\":\n [\n {\n \"location\": {\"value\": \"^~ /test2\"}\n }\n ]\n }\n}\n```\n\nAfter:\n\n```json\n{\n \"main-config\": \"C:\\\\test\\\\test.conf\",\n \"configs\":\n {\n \"C:\\\\test\\\\test.conf\":\n {\n \"context-type\": \"config\",\n \"value\": \"C:\\\\test\\\\test.conf\",\n \"params\":\n [\n {\n \"context-type\": \"http\",\n \"params\":\n [\n {\n \"context-type\": \"inline_comment\", \"value\": \"test comment\"\n },\n {\n \"context-type\": \"server\",\n \"params\":\n [\n {\n \"context-type\": \"directive\", \"value\": \"server_name testserver\"\n },\n {\n \"context-type\": \"location\", \"value\": \"~ /test\"\n },\n {\n \"context-type\": \"include\",\n \"value\": \"conf.d\\\\include*conf\",\n \"params\": [\"conf.d\\\\include.location1.conf\", \"conf.d\\\\include.location2.conf\"]\n }\n ]\n }\n ]\n }\n ]\n },\n \"conf.d\\\\include.location1.conf\":\n {\n \"context-type\": \"config\",\n \"value\": \"conf.d\\\\include.location1.conf\",\n \"params\":\n [\n {\n \"context-type\": \"location\", \"value\": \"~ /test1\"\n }\n ]\n },\n \"conf.d\\\\include.location2.conf\":\n {\n \"context-type\": \"config\",\n \"value\": \"conf.d\\\\include.location2.conf\",\n \"params\":\n [\n {\n \"context-type\": \"location\", \"value\": \"^~ /test2\"\n }\n ]\n }\n }\n}\n```\n\nThe code migration example for creating function calls for `Directive` and `Comment` context objects is as follows:\n\nBefore:\n\n```go\nimport (\n\t\"github.com/ClessLi/bifrost/pkg/resolv/V3/nginx/configuration/context/local\"\n)\n\n// new directive context\nnewDirective := local.NewDirective(\"some_directive\", \"some params\")\n// new comment context\nnewComment := local.NewComment(\"some comments\", false)\nnewComment := local.NewComment(\"some inline comments\", true)\n```\n\nAfter:\n\n```go\nimport (\n\t\"github.com/ClessLi/bifrost/pkg/resolv/V3/nginx/configuration/context/local\"\n\t\"github.com/ClessLi/bifrost/pkg/resolv/V3/nginx/configuration/context_type\"\n)\n\n// new directive context\nnewDirective := local.NewContext(context_type.TypeDirective, \"some_directive some params\")\n// new comment context\nnewComment := local.NewContext(context_type.TypeComment, \"some comments\")\nnewInlineComment := local.NewContext(context_type.TypeInlineComment, \"some inline comments\")\n```","shortMessageHtmlLink":"feat(resolv): refactored the Context JSON format serialization st…"}},{"before":"669a5097dcb8b1a8853515330e6a721ab968d19a","after":"4c0dcaf106d12d4773feaba3e06eb3b5db2c8e9d","ref":"refs/heads/develop","pushedAt":"2024-04-24T01:11:30.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"feat(resolv): refactored the `Context` `JSON` format serialization structure to simplify serialization/deserialization operations, making the serialization structure more universal and unified.\n\nBREAKING CHANGE: Changed the serialization structure of the `Context` `JSON` format, as well as the new functions for the `Directive` and `Comment` context objects.\n\nThe `Context` `JSON` format serialization structure changes as follows:\n\nBefore:\n\n```json\n{\n \"main-config\": \"C:\\\\test\\\\test.conf\",\n \"configs\":\n {\n \"C:\\\\test\\\\test.conf\":\n [\n {\n \"http\":\n {\n \"params\":\n [\n {\n \"inline\": true, \"comments\": \"test comment\"\n },\n {\n \"server\":\n {\n \"params\":\n [\n {\n \"directive\": \"server_name\", \"params\": \"testserver\"\n },\n {\n \"location\": {\"value\": \"~ /test\"}\n },\n {\n \"include\":\n {\n \"value\": \"conf.d\\\\include*conf\",\n \"params\": [\"conf.d\\\\include.location1.conf\", \"conf.d\\\\include.location2.conf\"]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"conf.d\\\\include.location1.conf\":\n [\n {\n \"location\": {\"value\": \"~ /test1\"}\n }\n ],\n \"conf.d\\\\include.location2.conf\":\n [\n {\n \"location\": {\"value\": \"^~ /test2\"}\n }\n ]\n }\n}\n```\n\nAfter:\n\n```json\n{\n \"main-config\": \"C:\\\\test\\\\test.conf\",\n \"configs\":\n {\n \"C:\\\\test\\\\test.conf\":\n {\n \"context-type\": \"config\",\n \"value\": \"C:\\\\test\\\\test.conf\",\n \"params\":\n [\n {\n \"context-type\": \"http\",\n \"params\":\n [\n {\n \"context-type\": \"inline_comment\", \"value\": \"test comment\"\n },\n {\n \"context-type\": \"server\",\n \"params\":\n [\n {\n \"context-type\": \"directive\", \"value\": \"server_name testserver\"\n },\n {\n \"context-type\": \"location\", \"value\": \"~ /test\"\n },\n {\n \"context-type\": \"include\",\n \"value\": \"conf.d\\\\include*conf\",\n \"params\": [\"conf.d\\\\include.location1.conf\", \"conf.d\\\\include.location2.conf\"]\n }\n ]\n }\n ]\n }\n ]\n },\n \"conf.d\\\\include.location1.conf\":\n {\n \"context-type\": \"config\",\n \"value\": \"conf.d\\\\include.location1.conf\",\n \"params\":\n [\n {\n \"context-type\": \"location\", \"value\": \"~ /test1\"\n }\n ]\n },\n \"conf.d\\\\include.location2.conf\":\n {\n \"context-type\": \"config\",\n \"value\": \"conf.d\\\\include.location2.conf\",\n \"params\":\n [\n {\n \"context-type\": \"location\", \"value\": \"^~ /test2\"\n }\n ]\n }\n }\n}\n```\n\nThe code migration example for creating function calls for `Directive` and `Comment` context objects is as follows:\n\nBefore:\n\n```go\nimport (\n\t\"github.com/ClessLi/bifrost/pkg/resolv/V3/nginx/configuration/context/local\"\n)\n\n// new directive context\nnewDirective := local.NewDirective(\"some_directive\", \"some params\")\n// new comment context\nnewComment := local.NewComment(\"some comments\", false)\nnewComment := local.NewComment(\"some inline comments\", true)\n```\n\nAfter:\n\n```go\nimport (\n\t\"github.com/ClessLi/bifrost/pkg/resolv/V3/nginx/configuration/context/local\"\n\t\"github.com/ClessLi/bifrost/pkg/resolv/V3/nginx/configuration/context_type\"\n)\n\n// new directive context\nnewDirective := local.NewContext(context_type.TypeDirective, \"some_directive some params\")\n// new comment context\nnewComment := local.NewContext(context_type.TypeComment, \"some comments\")\nnewInlineComment := local.NewContext(context_type.TypeInlineComment, \"some inline comments\")\n```","shortMessageHtmlLink":"feat(resolv): refactored the Context JSON format serialization st…"}},{"before":"5c9eb2bd80bed1affc52060d9d45a30553c2ac14","after":"4c0dcaf106d12d4773feaba3e06eb3b5db2c8e9d","ref":"refs/heads/feature/resolv-v3","pushedAt":"2024-04-23T07:05:52.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"feat(resolv): refactored the `Context` `JSON` format serialization structure to simplify serialization/deserialization operations, making the serialization structure more universal and unified.\n\nBREAKING CHANGE: Changed the serialization structure of the `Context` `JSON` format, as well as the new functions for the `Directive` and `Comment` context objects.\n\nThe `Context` `JSON` format serialization structure changes as follows:\n\nBefore:\n\n```json\n{\n \"main-config\": \"C:\\\\test\\\\test.conf\",\n \"configs\":\n {\n \"C:\\\\test\\\\test.conf\":\n [\n {\n \"http\":\n {\n \"params\":\n [\n {\n \"inline\": true, \"comments\": \"test comment\"\n },\n {\n \"server\":\n {\n \"params\":\n [\n {\n \"directive\": \"server_name\", \"params\": \"testserver\"\n },\n {\n \"location\": {\"value\": \"~ /test\"}\n },\n {\n \"include\":\n {\n \"value\": \"conf.d\\\\include*conf\",\n \"params\": [\"conf.d\\\\include.location1.conf\", \"conf.d\\\\include.location2.conf\"]\n }\n }\n ]\n }\n }\n ]\n }\n }\n ],\n \"conf.d\\\\include.location1.conf\":\n [\n {\n \"location\": {\"value\": \"~ /test1\"}\n }\n ],\n \"conf.d\\\\include.location2.conf\":\n [\n {\n \"location\": {\"value\": \"^~ /test2\"}\n }\n ]\n }\n}\n```\n\nAfter:\n\n```json\n{\n \"main-config\": \"C:\\\\test\\\\test.conf\",\n \"configs\":\n {\n \"C:\\\\test\\\\test.conf\":\n {\n \"context-type\": \"config\",\n \"value\": \"C:\\\\test\\\\test.conf\",\n \"params\":\n [\n {\n \"context-type\": \"http\",\n \"params\":\n [\n {\n \"context-type\": \"inline_comment\", \"value\": \"test comment\"\n },\n {\n \"context-type\": \"server\",\n \"params\":\n [\n {\n \"context-type\": \"directive\", \"value\": \"server_name testserver\"\n },\n {\n \"context-type\": \"location\", \"value\": \"~ /test\"\n },\n {\n \"context-type\": \"include\",\n \"value\": \"conf.d\\\\include*conf\",\n \"params\": [\"conf.d\\\\include.location1.conf\", \"conf.d\\\\include.location2.conf\"]\n }\n ]\n }\n ]\n }\n ]\n },\n \"conf.d\\\\include.location1.conf\":\n {\n \"context-type\": \"config\",\n \"value\": \"conf.d\\\\include.location1.conf\",\n \"params\":\n [\n {\n \"context-type\": \"location\", \"value\": \"~ /test1\"\n }\n ]\n },\n \"conf.d\\\\include.location2.conf\":\n {\n \"context-type\": \"config\",\n \"value\": \"conf.d\\\\include.location2.conf\",\n \"params\":\n [\n {\n \"context-type\": \"location\", \"value\": \"^~ /test2\"\n }\n ]\n }\n }\n}\n```\n\nThe code migration example for creating function calls for `Directive` and `Comment` context objects is as follows:\n\nBefore:\n\n```go\nimport (\n\t\"github.com/ClessLi/bifrost/pkg/resolv/V3/nginx/configuration/context/local\"\n)\n\n// new directive context\nnewDirective := local.NewDirective(\"some_directive\", \"some params\")\n// new comment context\nnewComment := local.NewComment(\"some comments\", false)\nnewComment := local.NewComment(\"some inline comments\", true)\n```\n\nAfter:\n\n```go\nimport (\n\t\"github.com/ClessLi/bifrost/pkg/resolv/V3/nginx/configuration/context/local\"\n\t\"github.com/ClessLi/bifrost/pkg/resolv/V3/nginx/configuration/context_type\"\n)\n\n// new directive context\nnewDirective := local.NewContext(context_type.TypeDirective, \"some_directive some params\")\n// new comment context\nnewComment := local.NewContext(context_type.TypeComment, \"some comments\")\nnewInlineComment := local.NewContext(context_type.TypeInlineComment, \"some inline comments\")\n```","shortMessageHtmlLink":"feat(resolv): refactored the Context JSON format serialization st…"}},{"before":"5c9eb2bd80bed1affc52060d9d45a30553c2ac14","after":"669a5097dcb8b1a8853515330e6a721ab968d19a","ref":"refs/heads/develop","pushedAt":"2024-04-23T01:22:07.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"docs(changelog): add `CHANGELOG-1.0.11.md`","shortMessageHtmlLink":"docs(changelog): add CHANGELOG-1.0.11.md"}},{"before":"5c9eb2bd80bed1affc52060d9d45a30553c2ac14","after":"669a5097dcb8b1a8853515330e6a721ab968d19a","ref":"refs/heads/master","pushedAt":"2024-04-01T10:04:24.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"docs(changelog): add `CHANGELOG-1.0.11.md`","shortMessageHtmlLink":"docs(changelog): add CHANGELOG-1.0.11.md"}},{"before":"390cfd0b9889631c3d4e2e0252b3f5f16471de47","after":"669a5097dcb8b1a8853515330e6a721ab968d19a","ref":"refs/heads/release/1.0.11","pushedAt":"2024-04-01T09:57:56.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"docs(changelog): add `CHANGELOG-1.0.11.md`","shortMessageHtmlLink":"docs(changelog): add CHANGELOG-1.0.11.md"}},{"before":"5c9eb2bd80bed1affc52060d9d45a30553c2ac14","after":null,"ref":"refs/tags/v1.0.11","pushedAt":"2024-04-01T09:53:33.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"}},{"before":"5c9eb2bd80bed1affc52060d9d45a30553c2ac14","after":null,"ref":"refs/tags/v1.0.11","pushedAt":"2024-04-01T09:40:54.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"}},{"before":null,"after":"390cfd0b9889631c3d4e2e0252b3f5f16471de47","ref":"refs/heads/release/1.0.11","pushedAt":"2024-04-01T09:34:01.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"chore: fix to skip contaminated version numbers on `pkg.go.dev`.\n\nBREAKING CHANGE: disable contaminated product package versions `v1.0.9` and `v1.0.10` on `pkg.go.dev`.\n\nCode migration requires changing the version of the 'bifrost' package from v1.0.9 or v1.0.10 to v1.0.11, as shown in the following example:\n\n`go.mod`:\n\n```\nrequire (\n\tgithub.com/ClessLi/bifrost v1.0.11\n)\n```","shortMessageHtmlLink":"chore: fix to skip contaminated version numbers on pkg.go.dev."}},{"before":"a1402184c9d4a87c9cbf0f83f4bb8d797c38d8cc","after":null,"ref":"refs/heads/release/1.0.11","pushedAt":"2024-04-01T09:19:57.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"}},{"before":"5c9eb2bd80bed1affc52060d9d45a30553c2ac14","after":null,"ref":"refs/tags/v1.0.11","pushedAt":"2024-04-01T09:19:07.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"}},{"before":null,"after":"a1402184c9d4a87c9cbf0f83f4bb8d797c38d8cc","ref":"refs/heads/release/1.0.11","pushedAt":"2024-04-01T09:17:09.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"docs(changelog): add `CHANGELOG-1.0.11.md`","shortMessageHtmlLink":"docs(changelog): add CHANGELOG-1.0.11.md"}},{"before":"4bd26be810f3b98d36fe8ef6b112cdbbe70eedab","after":"5c9eb2bd80bed1affc52060d9d45a30553c2ac14","ref":"refs/heads/master","pushedAt":"2024-04-01T03:37:19.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"docs: Update README.md","shortMessageHtmlLink":"docs: Update README.md"}},{"before":"4bd26be810f3b98d36fe8ef6b112cdbbe70eedab","after":"5c9eb2bd80bed1affc52060d9d45a30553c2ac14","ref":"refs/heads/develop","pushedAt":"2024-04-01T03:36:26.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"docs: Update README.md","shortMessageHtmlLink":"docs: Update README.md"}},{"before":"4bd26be810f3b98d36fe8ef6b112cdbbe70eedab","after":"5c9eb2bd80bed1affc52060d9d45a30553c2ac14","ref":"refs/heads/feature/resolv-v3","pushedAt":"2024-04-01T03:31:58.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"docs: Update README.md","shortMessageHtmlLink":"docs: Update README.md"}},{"before":null,"after":"4bd26be810f3b98d36fe8ef6b112cdbbe70eedab","ref":"refs/heads/feature/resolv-v3","pushedAt":"2024-04-01T02:14:50.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"docs(changelog): add `CHANGELOG-1.0.9.md`","shortMessageHtmlLink":"docs(changelog): add CHANGELOG-1.0.9.md"}},{"before":"dd15e72e793a471a19aa1882318952d9367e9205","after":null,"ref":"refs/heads/feature/resolv-v3","pushedAt":"2024-04-01T02:14:33.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"}},{"before":"3b306d7c3f9c077f29175736f5851f9a9e1e37cb","after":"4bd26be810f3b98d36fe8ef6b112cdbbe70eedab","ref":"refs/heads/develop","pushedAt":"2024-04-01T02:11:29.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"docs(changelog): add `CHANGELOG-1.0.9.md`","shortMessageHtmlLink":"docs(changelog): add CHANGELOG-1.0.9.md"}},{"before":"3b306d7c3f9c077f29175736f5851f9a9e1e37cb","after":"4bd26be810f3b98d36fe8ef6b112cdbbe70eedab","ref":"refs/heads/master","pushedAt":"2024-04-01T02:10:46.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"docs(changelog): add `CHANGELOG-1.0.9.md`","shortMessageHtmlLink":"docs(changelog): add CHANGELOG-1.0.9.md"}},{"before":"3b306d7c3f9c077f29175736f5851f9a9e1e37cb","after":"4bd26be810f3b98d36fe8ef6b112cdbbe70eedab","ref":"refs/heads/release/1.0.9","pushedAt":"2024-04-01T02:03:05.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"docs(changelog): add `CHANGELOG-1.0.9.md`","shortMessageHtmlLink":"docs(changelog): add CHANGELOG-1.0.9.md"}},{"before":"3b306d7c3f9c077f29175736f5851f9a9e1e37cb","after":null,"ref":"refs/tags/v1.0.9","pushedAt":"2024-04-01T02:01:48.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"}},{"before":null,"after":"3b306d7c3f9c077f29175736f5851f9a9e1e37cb","ref":"refs/heads/release/1.0.9","pushedAt":"2024-04-01T02:00:46.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"fix: fix 1 `Dependabot` alert.","shortMessageHtmlLink":"fix: fix 1 Dependabot alert."}},{"before":"bb218bbd9ce9429f6ac06464a0f8c3cd47bc3961","after":"3b306d7c3f9c077f29175736f5851f9a9e1e37cb","ref":"refs/heads/develop","pushedAt":"2024-04-01T01:51:44.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"fix: fix 1 `Dependabot` alert.","shortMessageHtmlLink":"fix: fix 1 Dependabot alert."}},{"before":"bb218bbd9ce9429f6ac06464a0f8c3cd47bc3961","after":"3b306d7c3f9c077f29175736f5851f9a9e1e37cb","ref":"refs/heads/master","pushedAt":"2024-04-01T01:51:23.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"},"commit":{"message":"fix: fix 1 `Dependabot` alert.","shortMessageHtmlLink":"fix: fix 1 Dependabot alert."}},{"before":"8ec05a7245b3c54512307e56c23079ee9ca849fd","after":null,"ref":"refs/tags/v1.0.9","pushedAt":"2024-04-01T01:20:46.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"ClessLi","name":"clessli","path":"/ClessLi","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/37110067?s=80&v=4"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEOKUFegA","startCursor":null,"endCursor":null}},"title":"Activity · ClessLi/bifrost"}