{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":295828549,"defaultBranch":"master","name":"bazel","ownerLogin":"comius","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2020-09-15T19:25:11.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/1796240?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1709826582.0","currentOid":""},"activityList":{"items":[{"before":null,"after":"8acd08c190d467e6610139b794b268ed87ddb5d1","ref":"refs/heads/cp-android-ide-info","pushedAt":"2024-03-07T15:49:42.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Expose AndroidIdeInfo in android_common\n\nPreviously https://github.com/bazelbuild/bazel/commit/916c3f5a649926f07a8390893539b560646a192e exposed the provider on top-level to support IntelliJ aspects. Exposing it over android_common, makes it possible to detect its presence in Starlark code via `getattr(android_common, \"AndroidIdeInfo\")`. With this detection it's easier to support older Bazel versions.\n\nWithout exposing it via android_common, detecting AndroidIdeInfo presence in Bazel world is only possible using a new dependency on @bazel_features in IntelliJ aspects.\n\nAddresses: https://github.com/bazelbuild/bazel/issues/21544\nPiperOrigin-RevId: 613580552\nChange-Id: I214024facbdc9ac7742bf98575101bd624d4a6a7","shortMessageHtmlLink":"Expose AndroidIdeInfo in android_common"}},{"before":null,"after":"d89f9a9f5be0bd866c7b10a930a45bd9dd4a8474","ref":"refs/heads/cp_ondemand_21589-7.1.0","pushedAt":"2024-03-07T14:41:13.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Change Info to CcToolchainProvider","shortMessageHtmlLink":"Change Info to CcToolchainProvider"}},{"before":null,"after":"ecacc5fca418d937e86d355ce41061053ece9659","ref":"refs/heads/cherrypick-extend_rule","pushedAt":"2024-02-07T12:44:08.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Reify outputs of initializer within the package\n\nThe labels need to be local to the package. Setting them in an initializer was broken.\n\nPiperOrigin-RevId: 600863492\nChange-Id: I0561f43273a62db3b9e823ec3b49734b380da878","shortMessageHtmlLink":"Reify outputs of initializer within the package"}},{"before":null,"after":"ebf5a8ffb34b8861fbf4f252651a85ff5ff0cab6","ref":"refs/heads/cherrypick-linkparamsfile","pushedAt":"2024-02-07T11:04:47.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Refactor splitting of LinkerCommandLine\n\nBefore `getRawLinkArgv` generated a joint/mixed command line, which was composed of 'linker executable' (first argument) and regular arguments. Reference to 'param file' was mixed into the regular arguments.\n\nLinker command line is long, too long. To fix this, most of linkers are called like `linker @param.file`. The long list of arguments is hidden in `param.file`.\n\n`splitCommandline` used `isLikelyParamFile` to filter out what that `param file` reference was. The result were 2 command lines. First one with 'linker executable' and reference to 'param file' and second command line contained regular arguments, that are written to param file.\n\nGenerate those 2 command lines directly. First one is returned by `getCommandLine` and second one (the regular arguments) by `getParamCommandLine`\n\nParam file reference is formatted using `linker_param_file` feature, using `%{linker_param_file}` substitution. In most cases this is just `@%{linker_param_file}`, but there are some linkers that need different formatting.\n\nThis change is also needed for Starlarkification of CppLinkAction, because the Starlark interface requires to set how param file is formatted, directly. See https://bazel.build/rules/lib/builtins/Args#use_param_file\n\nFixes: https://github.com/bazelbuild/bazel/issues/18074\nPiperOrigin-RevId: 595912823\nChange-Id: I54b36113d87f975af63341b2dec17b2f861c0ffa","shortMessageHtmlLink":"Refactor splitting of LinkerCommandLine"}},{"before":null,"after":"29b1f95fa2bad2f4fcb3af1f6293c266df31735b","ref":"refs/heads/proto_toolchainisation_cherrypicks","pushedAt":"2024-01-17T19:03:23.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Support automatic exec groups in proto_common.compile\n\nPass toolchain_type through ProtoLangToolchainInfo into proto_common.compile and use it on ctx.actions.run. Automatic exec groups require that toolchain type is set on the `ctx.actions.run`. This information is used to select correct execution platform.\n\nExpose INCOMPATIBLE_ENABLE_PROTO_TOOLCHAIN_RESOLUTION in proto_common. This will be needed to support lang_proto_libraries that are not part of Bazel. For example py_proto_library. Other methods in `toolchains` struct in proto_common.bzl, are both temporary and can be written in Starlark, so don't expose them. It's possible to access the value in backward compatible manner (that is with `getattr(proto_common, ...)`).\n\nExpose INCOMPATIBLE_PASS_TOOLCHAIN_TYPE in proto_common. Second \"flag\" is here to mark, that builtin `proto_lang_toolchain` rule has a `toolchain_type` attribute. This way `proto_lang_toolchain` macro can pass the value in a compatible fashion with older Bazel. This should make toolchainisation work with older versions of Bazel that don't know about automatic exec groups and don't need to pass in the value.\n\nIssue: https://github.com/bazelbuild/rules_proto/issues/179\nPiperOrigin-RevId: 571876657\nChange-Id: I543ab862b318c9062d40430160e33ad197973094","shortMessageHtmlLink":"Support automatic exec groups in proto_common.compile"}},{"before":"2bf1750a2fa0862bd0ca0d583b473816b105d7c0","after":"b26d8c67dc6affb3d036a13b3be056faef226e27","ref":"refs/heads/reenable-cctoolchain-tests","pushedAt":"2024-01-09T18:37:21.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Fix postsubmit.yml","shortMessageHtmlLink":"Fix postsubmit.yml"}},{"before":"767bb3d8b67fa3149ba7bfa1799a34104ab4f25e","after":"2bf1750a2fa0862bd0ca0d583b473816b105d7c0","ref":"refs/heads/reenable-cctoolchain-tests","pushedAt":"2024-01-08T20:54:32.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Fixup CcCommonTest and py_test test","shortMessageHtmlLink":"Fixup CcCommonTest and py_test test"}},{"before":"7ba4772d461a0c5397e4e741c912ea654fbcd216","after":"767bb3d8b67fa3149ba7bfa1799a34104ab4f25e","ref":"refs/heads/reenable-cctoolchain-tests","pushedAt":"2024-01-08T15:43:54.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Correct target constrains of adhoc MacOS toolchain mocks.","shortMessageHtmlLink":"Correct target constrains of adhoc MacOS toolchain mocks."}},{"before":"8e8ddaba0e90c280bfd85644d6ccd91df5b6d353","after":"7ba4772d461a0c5397e4e741c912ea654fbcd216","ref":"refs/heads/reenable-cctoolchain-tests","pushedAt":"2024-01-08T08:59:11.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Reenable C++ tests on Mac","shortMessageHtmlLink":"Reenable C++ tests on Mac"}},{"before":null,"after":"8e8ddaba0e90c280bfd85644d6ccd91df5b6d353","ref":"refs/heads/reenable-cctoolchain-tests","pushedAt":"2024-01-08T08:57:49.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Makes ImmutableMap codecs DeferredObjectCodec.\n\n* Fixes a soundness error with ImmutableMapCodec which would cause a crash if\n the declared type is ImmutableSortedMap by splitting into 2 codecs.\n* This necessarily includes ImmutableBiMapCodec and\n ImmutableClassToInstanceMapCodec because those two previously had\n dependencies on ImmutableMapCodec.\n\nPiperOrigin-RevId: 596078698\nChange-Id: I23b928307a3f1b1722d31b2907366fe46352ee6f","shortMessageHtmlLink":"Makes ImmutableMap codecs DeferredObjectCodec."}},{"before":"361fdf175876a2e42113457517cac44ff4de99db","after":"cf89033fc390dc90e9384ac6a7e688f18ad8aa14","ref":"refs/heads/cherry-pick-extend-rule","pushedAt":"2023-12-04T18:01:29.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Define function_transition_allowlist in StarlarkRuleClassFunctionsTest","shortMessageHtmlLink":"Define function_transition_allowlist in StarlarkRuleClassFunctionsTest"}},{"before":null,"after":"361fdf175876a2e42113457517cac44ff4de99db","ref":"refs/heads/cherry-pick-extend-rule","pushedAt":"2023-12-04T17:25:37.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Support incoming configuration transition in extended rules\n\nPiperOrigin-RevId: 587721322\nChange-Id: I70736474f8cd59e9e21a255fce6420dfc725b139","shortMessageHtmlLink":"Support incoming configuration transition in extended rules"}},{"before":"e68636f941ffd52343d2c7945c9c896398dba395","after":"cd4be285e3187620d2fae83bb20d5f6a76d24146","ref":"refs/heads/cherry-pick-extend_rule","pushedAt":"2023-11-14T14:43:19.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"[7.0.0] Make `Label#toString` return `@@`-prefixed labels (#20143)\n\nThis change causes all labels in error messages, log output, Build Event\nProtocol, etc. to be prefixed with double-at (`@@`) if they are from\nnon-main repos. This prevents cases where messages contain stuff like\n`the target @abc~1.0//:def is wrong` but the user can't do `bazel query\n@abc~1.0//:def` at all, since the actual target is `@@abc~1.0//:def`.\n\nThis required more test changes than expected as there have been many\nplaces in the codebase where we compare labels using some sort of string\nform (for example, toolchain types as automatic exec groups).\n\nFixes https://github.com/bazelbuild/bazel/issues/18543.\n\nRELNOTES[INC]: All labels in Bazel error messages, log output, Build\nEvent Protocol, etc. are now prefixed with double-at (`@@`) instead of\nsingle-at (`@`) where applicable, to properly denote that they contain\ncanonical repo names.\n\nPiperOrigin-RevId: 581287175\nChange-Id: I1261ab14067bcf5d44cd140e5528b5da5916dc87","shortMessageHtmlLink":"[7.0.0] Make Label#toString return @@-prefixed labels (bazelbuild…"}},{"before":"b67fc613225960b36d41ae2ba4a3d6a31b2e8fb2","after":"e68636f941ffd52343d2c7945c9c896398dba395","ref":"refs/heads/cherry-pick-extend_rule","pushedAt":"2023-11-14T13:39:05.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Update subrule documentation\n\nPiperOrigin-RevId: 581944016\nChange-Id: Iecad9c6933b269043b801571cb81f394e6bbb4ea","shortMessageHtmlLink":"Update subrule documentation"}},{"before":"577c5731d8e0ad0d1b86a82526788cb7242cc0e9","after":"b67fc613225960b36d41ae2ba4a3d6a31b2e8fb2","ref":"refs/heads/cherry-pick-extend_rule","pushedAt":"2023-11-13T17:30:54.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Update subrule documentation\n\nPiperOrigin-RevId: 581944016\nChange-Id: Iecad9c6933b269043b801571cb81f394e6bbb4ea","shortMessageHtmlLink":"Update subrule documentation"}},{"before":"4a77e84ffbf95f1b8d01213eb3030579c374294f","after":"577c5731d8e0ad0d1b86a82526788cb7242cc0e9","ref":"refs/heads/cherry-pick-extend_rule","pushedAt":"2023-11-13T15:24:18.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Update subrule documentation\n\nPiperOrigin-RevId: 581944016\nChange-Id: Iecad9c6933b269043b801571cb81f394e6bbb4ea","shortMessageHtmlLink":"Update subrule documentation"}},{"before":"b1585b885ab47f09a91066f665c87b74b7878c55","after":"4a77e84ffbf95f1b8d01213eb3030579c374294f","ref":"refs/heads/cherry-pick-extend_rule","pushedAt":"2023-11-13T15:23:13.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Update subrule documentation\n\nPiperOrigin-RevId: 581944016\nChange-Id: Iecad9c6933b269043b801571cb81f394e6bbb4ea","shortMessageHtmlLink":"Update subrule documentation"}},{"before":"562ce3785ed5029f2f61e3f850f7e2f2205ffbb5","after":"b1585b885ab47f09a91066f665c87b74b7878c55","ref":"refs/heads/cherry-pick-extend_rule","pushedAt":"2023-11-13T12:37:19.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Add support for subrules to depend on other subrules\n\nPiperOrigin-RevId: 581245635\nChange-Id: I258c0e874af78451a9cd3fc6a4228750a60485a9","shortMessageHtmlLink":"Add support for subrules to depend on other subrules"}},{"before":null,"after":"562ce3785ed5029f2f61e3f850f7e2f2205ffbb5","ref":"refs/heads/cherry-pick-extend_rule","pushedAt":"2023-11-13T11:30:19.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Add support for subrules to depend on other subrules\n\nPiperOrigin-RevId: 581245635\nChange-Id: I258c0e874af78451a9cd3fc6a4228750a60485a9","shortMessageHtmlLink":"Add support for subrules to depend on other subrules"}},{"before":null,"after":"1483a7c3406c7512a4a9be794f2255a9169cf3a6","ref":"refs/heads/incompatible_disable_objc_library_transition","pushedAt":"2023-10-17T16:22:59.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Flip --incompatible_disable_objc_library_transition\n\nRELNOTES[INC]: transition is removed from objc_library (https://github.com/bazelbuild/bazel/issues/19688)\n\nPiperOrigin-RevId: 574168995\nChange-Id: I535ddaa4ea32b8ccd8ba2e36df349a5df749dc8d","shortMessageHtmlLink":"Flip --incompatible_disable_objc_library_transition"}},{"before":null,"after":"003fbffa4572d6ce8f50143e47c0731aaaf08eb9","ref":"refs/heads/test-allowlist2","pushedAt":"2023-10-13T05:11:19.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Rollforward of https://github.com/bazelbuild/bazel/commit/10a46b1e85f0b5bf8564c125dd02cd4e70017452: Remove legacy allowlist names\n\nNEW: Maintainers of the repos had 1 month to upgrade version of rules Go https://github.com/bazelbuild/bazel/issues/19493\nNEW: syncing against code changes\nPiperOrigin-RevId: 573099651\nChange-Id: I517e45a83989bfa24f6487ef6d89d60aeb31e4d3","shortMessageHtmlLink":"Rollforward of bazelbuild@10a46b1: Remove legacy allowlist names"}},{"before":null,"after":"0ef8906192b4b0cd227fcb1d8bd2d279711d8117","ref":"refs/heads/test-legacy-allowlists","pushedAt":"2023-10-13T05:10:10.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Make rule parameter non-positional\n\nThis will make it possible to reorder the parameters, to improve documentation. Or to remove them in the future.\n\nimplementation is kept positional, because that's often used in tests and examples.\n\nRELNOTES[INC]: rule function only takes implementation function positionally, other parameters have to be named\n\nPiperOrigin-RevId: 569411041\nChange-Id: If02d5c296d087e79e713ad70275762f67579885b","shortMessageHtmlLink":"Make rule parameter non-positional"}},{"before":null,"after":"0ef8906192b4b0cd227fcb1d8bd2d279711d8117","ref":"refs/heads/test-named-rule-call","pushedAt":"2023-10-02T09:27:13.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Make rule parameter non-positional\n\nThis will make it possible to reorder the parameters, to improve documentation. Or to remove them in the future.\n\nimplementation is kept positional, because that's often used in tests and examples.\n\nRELNOTES[INC]: rule function only takes implementation function positionally, other parameters have to be named\n\nPiperOrigin-RevId: 569411041\nChange-Id: If02d5c296d087e79e713ad70275762f67579885b","shortMessageHtmlLink":"Make rule parameter non-positional"}},{"before":null,"after":"ee17e8f1282bf05b3792e354ed9c9c0af0b3d5ad","ref":"refs/heads/java_test_deploy","pushedAt":"2023-09-27T05:19:59.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Remove non-executable mode and deploy jars from Bazel java_test\n\nThis makes java_test a simple rule with a macro wrapper, and thus extendable.\n\nStop producing deploy jars for tests in Bazel. That was a misfeature.\n\nStop producing non-executable deploy jars in Bazel java_test.\n\nRELNOTES[INC]: java_test doesn't produce deploy jars anymore\n\nPiperOrigin-RevId: 568507588\nChange-Id: Id219736b71b36f37e0722d13055dd6ac0a796e74","shortMessageHtmlLink":"Remove non-executable mode and deploy jars from Bazel java_test"}},{"before":"fc25e0b56602bda2867e5ae76f387e4b57941a6f","after":"247a4a32c0ef4f85400ab752788c72adc96d5937","ref":"refs/heads/fix-licenses","pushedAt":"2023-09-12T04:08:19.000Z","pushType":"push","commitsCount":10,"pusher":{"login":"iancha1992","name":"Ian (Hee) Cha","path":"/iancha1992","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/132618328?s=80&v=4"},"commit":{"message":"Merge branch 'release-6.4.0' into fix-licenses","shortMessageHtmlLink":"Merge branch 'release-6.4.0' into fix-licenses"}},{"before":"bb29018111be582e614e02daaaac6c9f72fb2d00","after":"d596c67c8e57b9d10635ab9e5ecf50d7a7205532","ref":"refs/heads/flip-cc","pushedAt":"2023-09-11T09:56:02.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Fix AutoExecGroupTests for C++ toolchains","shortMessageHtmlLink":"Fix AutoExecGroupTests for C++ toolchains"}},{"before":"188c50e3788c5e15558caef38194b4a856980a2f","after":"fc25e0b56602bda2867e5ae76f387e4b57941a6f","ref":"refs/heads/fix-licenses","pushedAt":"2023-09-08T04:40:50.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Merge branch 'release-6.4.0' into fix-licenses","shortMessageHtmlLink":"Merge branch 'release-6.4.0' into fix-licenses"}},{"before":"4729be7b600103bb113f9d8325eb89b8cc78ff5d","after":"188c50e3788c5e15558caef38194b4a856980a2f","ref":"refs/heads/fix-licenses","pushedAt":"2023-09-07T16:56:09.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"iancha1992","name":"Ian (Hee) Cha","path":"/iancha1992","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/132618328?s=80&v=4"},"commit":{"message":"Merge branch 'release-6.4.0' into fix-licenses","shortMessageHtmlLink":"Merge branch 'release-6.4.0' into fix-licenses"}},{"before":"e8078bfca6686d665a5489e8c55b7f7eab187ac5","after":"bb29018111be582e614e02daaaac6c9f72fb2d00","ref":"refs/heads/flip-cc","pushedAt":"2023-09-07T15:03:46.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Fix unit tests","shortMessageHtmlLink":"Fix unit tests"}},{"before":"c94963cc2b3c84573aece97bc5cfb460a85bb218","after":"e8078bfca6686d665a5489e8c55b7f7eab187ac5","ref":"refs/heads/flip-cc","pushedAt":"2023-09-07T14:47:42.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"comius","name":"Ivo List","path":"/comius","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1796240?s=80&v=4"},"commit":{"message":"Fix unit tests","shortMessageHtmlLink":"Fix unit tests"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAED0CbmQA","startCursor":null,"endCursor":null}},"title":"Activity · comius/bazel"}