{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":540597864,"defaultBranch":"main","name":"virtual-code-owners","ownerLogin":"sverweij","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2022-09-23T19:56:59.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/4822597?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1717571911.0","currentOid":""},"activityList":{"items":[{"before":"d19d77b0563b94eb7d72bad701684f63215d72f1","after":"877c3d1e5c2c996098e967b7a4fc3026b70a6c83","ref":"refs/heads/main","pushedAt":"2024-06-05T07:18:31.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"},"commit":{"message":"docs(README): removes gotcha that sections wouldn't work (#214)\n\n## Description\r\n\r\n- removes gotcha that sections wouldn't work\r\n\r\n## Motivation and Context\r\n\r\nain't true anymore \r\n\r\n## How Has This Been Tested?\r\n\r\n- [x] green ci\r\n\r\n\r\n## Types of changes\r\n\r\n- [ ] Bug fix (non-breaking change which fixes an issue)\r\n- [x] Documentation only change\r\n- [ ] Refactor (non-breaking change which fixes an issue without\r\nchanging functionality)\r\n- [ ] New feature (non-breaking change which adds functionality)\r\n- [ ] Breaking change (fix or feature that would cause existing\r\nfunctionality to change)","shortMessageHtmlLink":"docs(README): removes gotcha that sections wouldn't work (#214)"}},{"before":"8226453b7add99f89e76c8b08e2ec4d65e2fa29e","after":null,"ref":"refs/heads/McMeadow-patch-1","pushedAt":"2024-06-05T07:18:31.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"}},{"before":null,"after":"8226453b7add99f89e76c8b08e2ec4d65e2fa29e","ref":"refs/heads/McMeadow-patch-1","pushedAt":"2024-06-05T07:16:12.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"McMeadow","name":"Lex McMeadow","path":"/McMeadow","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11897590?s=80&v=4"},"commit":{"message":"doc(README): removes gotcha that sections wouldn't work","shortMessageHtmlLink":"doc(README): removes gotcha that sections wouldn't work"}},{"before":"c74ca7b61b3324565081ac77773d0e0c4aa36fcc","after":"d19d77b0563b94eb7d72bad701684f63215d72f1","ref":"refs/heads/main","pushedAt":"2024-06-04T12:13:23.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"},"commit":{"message":"8.2.0","shortMessageHtmlLink":"8.2.0"}},{"before":"f7d1946484107c024f8075c59f301dad244815c9","after":"c74ca7b61b3324565081ac77773d0e0c4aa36fcc","ref":"refs/heads/main","pushedAt":"2024-06-04T11:58:22.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"},"commit":{"message":"chore: cleans up now unused js-json converter & rebuilds","shortMessageHtmlLink":"chore: cleans up now unused js-json converter & rebuilds"}},{"before":"522fbca854fe8d0c0dee6aca24acf7d161b50245","after":"f7d1946484107c024f8075c59f301dad244815c9","ref":"refs/heads/main","pushedAt":"2024-06-04T11:49:39.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"},"commit":{"message":"feat: adds support for user-less rules in sections with default owners (#213)\n\n## Description\r\n\r\n- adds support for user-less rules in sections with default owners in\r\nthe parser\r\n- adds support for 'inherited' default owners in the labeler generator\r\n- refactors the (virtual) codeowners parser a bit to make it easier to\r\nmaintain\r\n- drive-by: removes the src/virtual-code-owners/virtual-teams.schema.ts.\r\nIt's used nowhere now the validations are done by `ryo` instead of by\r\n`ajv`.\r\n\r\n## Motivation and Context\r\n\r\nIn GitLab CODEOWNERS it's possible to assign default owners in sections,\r\nand put no owners in rules in that section:\r\n\r\n```CODEOWNERS\r\n[some section] @team-gitlab @maintainers\r\nsrc/important-stuff\r\ntools/\r\n.gitlab/\r\n```\r\n\r\nThe rules `src/important-stuff`, `tools/` and `.gitlab` will then\r\n'inherit' the\r\nowners declared in the section heading (in this case `@team-gitlab` and\r\n`@maintainers`).\r\n\r\nBefore this PR these rules would be labeled as _unknown_ rules and\r\ntreated as erroneous lines. After this PR they're treated as 'normal'\r\nrules, but with inherited users.\r\n\r\n> I haven't seen this in the GitHub documentation yet, but CODEOWNER\r\nfiles that use this construct aren't flagged as illegal either, so it\r\nmight already work and/ or be a future feature there.\r\n\r\n\r\n## How Has This Been Tested?\r\n\r\n- [x] green ci\r\n- [x] additional and updated automated non-regression tests\r\n\r\n## Types of changes\r\n\r\n- [ ] Bug fix (non-breaking change which fixes an issue)\r\n- [ ] Documentation only change\r\n- [ ] Refactor (non-breaking change which fixes an issue without\r\nchanging functionality)\r\n- [x] New feature (non-breaking change which adds functionality)\r\n- [ ] Breaking change (fix or feature that would cause existing\r\nfunctionality to change)\r\n\r\nCo-authored-by: Lex McMeadow ","shortMessageHtmlLink":"feat: adds support for user-less rules in sections with default owners ("}},{"before":"5591cee18f95343de2c00c3a2bd613c3d4eb719e","after":null,"ref":"refs/heads/feature/adds-support-for-user-less-rules-in-sections","pushedAt":"2024-06-04T11:49:39.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"}},{"before":"1ace5d23b8f69671eb61cdf08dab28268baafbd7","after":"5591cee18f95343de2c00c3a2bd613c3d4eb719e","ref":"refs/heads/feature/adds-support-for-user-less-rules-in-sections","pushedAt":"2024-06-04T11:43:28.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"},"commit":{"message":"refactor: simplifies parseRule","shortMessageHtmlLink":"refactor: simplifies parseRule"}},{"before":"a28edcf03e4d864034c4bfd8a0701cb2eeb8e426","after":"1ace5d23b8f69671eb61cdf08dab28268baafbd7","ref":"refs/heads/feature/adds-support-for-user-less-rules-in-sections","pushedAt":"2024-06-04T11:22:49.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"},"commit":{"message":"fix: build after online PR updates","shortMessageHtmlLink":"fix: build after online PR updates"}},{"before":"6cf47272945a7518c41ca4fd70498c5415f22341","after":"a28edcf03e4d864034c4bfd8a0701cb2eeb8e426","ref":"refs/heads/feature/adds-support-for-user-less-rules-in-sections","pushedAt":"2024-06-04T11:21:03.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"McMeadow","name":"Lex McMeadow","path":"/McMeadow","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11897590?s=80&v=4"},"commit":{"message":"doc: Apply suggestions from code review - readme","shortMessageHtmlLink":"doc: Apply suggestions from code review - readme"}},{"before":"058f2e4f0d7116dce57217a7ee6312f85fbed18c","after":"6cf47272945a7518c41ca4fd70498c5415f22341","ref":"refs/heads/feature/adds-support-for-user-less-rules-in-sections","pushedAt":"2024-06-04T11:17:14.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"McMeadow","name":"Lex McMeadow","path":"/McMeadow","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11897590?s=80&v=4"},"commit":{"message":"refactor: apply suggestions from code review","shortMessageHtmlLink":"refactor: apply suggestions from code review"}},{"before":null,"after":"058f2e4f0d7116dce57217a7ee6312f85fbed18c","ref":"refs/heads/feature/adds-support-for-user-less-rules-in-sections","pushedAt":"2024-06-04T10:31:58.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"},"commit":{"message":"feat: adds support for user-less rules in sections with default owners","shortMessageHtmlLink":"feat: adds support for user-less rules in sections with default owners"}},{"before":"28be795d0618cee554512fcbd5b7d6a37eb74295","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/non-major-node-dev-dependencies-f507770c86","pushedAt":"2024-06-03T12:50:43.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"McMeadow","name":"Lex McMeadow","path":"/McMeadow","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11897590?s=80&v=4"}},{"before":"4abc573418806b54b56ca9dc519f092ae9c15ac7","after":"522fbca854fe8d0c0dee6aca24acf7d161b50245","ref":"refs/heads/main","pushedAt":"2024-06-03T12:50:42.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"McMeadow","name":"Lex McMeadow","path":"/McMeadow","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/11897590?s=80&v=4"},"commit":{"message":"build(deps-dev): bump the non-major-node-dev-dependencies group across 1 directory with 4 updates (#210)\n\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"build(deps-dev): bump the non-major-node-dev-dependencies group acros…"}},{"before":"f90925a1a0c32a99860f5289d63fe3893c89c42b","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/non-major-node-dependencies-578007b13b","pushedAt":"2024-06-03T12:49:12.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"}},{"before":"f9f6e0fb1a6328eced6ecea8582ac1194c9475b2","after":"4abc573418806b54b56ca9dc519f092ae9c15ac7","ref":"refs/heads/main","pushedAt":"2024-06-03T12:49:11.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"},"commit":{"message":"build(deps): bump yaml from 2.4.2 to 2.4.3 in the non-major-node-dependencies group across 1 directory (#212)\n\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"build(deps): bump yaml from 2.4.2 to 2.4.3 in the non-major-node-depe…"}},{"before":null,"after":"f90925a1a0c32a99860f5289d63fe3893c89c42b","ref":"refs/heads/dependabot/npm_and_yarn/non-major-node-dependencies-578007b13b","pushedAt":"2024-06-03T09:06:45.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":"build(deps): bump yaml\n\nBumps the non-major-node-dependencies group with 1 update in the / directory: [yaml](https://github.com/eemeli/yaml).\n\n\nUpdates `yaml` from 2.4.2 to 2.4.3\n- [Release notes](https://github.com/eemeli/yaml/releases)\n- [Commits](https://github.com/eemeli/yaml/compare/v2.4.2...v2.4.3)\n\n---\nupdated-dependencies:\n- dependency-name: yaml\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: non-major-node-dependencies\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump yaml"}},{"before":"b9d39ca0d434e4db77fbcf4c0bd3c28a2bf3c7c4","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/non-major-node-dependencies-0ce88d167f","pushedAt":"2024-06-03T09:06:42.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":"f92bebf910ab2c1a806d6d296ad093c2da7aa618","after":"f9f6e0fb1a6328eced6ecea8582ac1194c9475b2","ref":"refs/heads/main","pushedAt":"2024-06-03T09:06:02.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"},"commit":{"message":"refactor(team-map): replaces 'ajv' with a hand-rolled validation (#211)\n\n## Description\r\n\r\n- replaces the validation of the team map in ajv with a simple\r\nhand-rolled one\r\n- removes the 3rd party production dependency 'ajv'\r\n\r\n## Motivation and Context\r\n\r\nLess dependencies = less worries. Ajv is b.t.w. a great & well\r\nmaintained package, but for validating the tiny team maps it's overkill.\r\nIt also makes virtual-code-owners' footprint smaller (ajv is ~120kb\r\nminified/ ~35kb compressed - compared to vco itself which has the\r\nnumbers ~27kb/ ~9kb).\r\n\r\n## How Has This Been Tested?\r\n\r\n- [x] green ci\r\n- [x] additional non-regression integration tests (we have to test a bit\r\nmore now, but also the error messages can be easier made to fit to our\r\nuse case).\r\n\r\n## Types of changes\r\n\r\n- [ ] Bug fix (non-breaking change which fixes an issue)\r\n- [ ] Documentation only change\r\n- [x] Refactor (non-breaking change which fixes an issue without\r\nchanging functionality)\r\n- [ ] New feature (non-breaking change which adds functionality)\r\n- [ ] Breaking change (fix or feature that would cause existing\r\nfunctionality to change)","shortMessageHtmlLink":"refactor(team-map): replaces 'ajv' with a hand-rolled validation (#211)"}},{"before":"cb498e868ae753006ab3791258bff600fa4e9393","after":null,"ref":"refs/heads/refactor/hand-validate-team-map","pushedAt":"2024-06-03T09:06:02.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"}},{"before":null,"after":"cb498e868ae753006ab3791258bff600fa4e9393","ref":"refs/heads/refactor/hand-validate-team-map","pushedAt":"2024-06-03T08:50:49.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"},"commit":{"message":"refactor(team-map): replaces 'ajv' with a simple hand validation","shortMessageHtmlLink":"refactor(team-map): replaces 'ajv' with a simple hand validation"}},{"before":null,"after":"28be795d0618cee554512fcbd5b7d6a37eb74295","ref":"refs/heads/dependabot/npm_and_yarn/non-major-node-dev-dependencies-f507770c86","pushedAt":"2024-06-03T00:58:56.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":"build(deps-dev): bump the non-major-node-dev-dependencies group across 1 directory with 4 updates\n\nBumps the non-major-node-dev-dependencies group with 4 updates in the / directory: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [lint-staged](https://github.com/okonet/lint-staged), [prettier](https://github.com/prettier/prettier) and [tsx](https://github.com/privatenumber/tsx).\n\n\nUpdates `@types/node` from 20.12.12 to 20.14.0\n- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)\n- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)\n\nUpdates `lint-staged` from 15.2.2 to 15.2.5\n- [Release notes](https://github.com/okonet/lint-staged/releases)\n- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/okonet/lint-staged/compare/v15.2.2...v15.2.5)\n\nUpdates `prettier` from 3.2.5 to 3.3.0\n- [Release notes](https://github.com/prettier/prettier/releases)\n- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/prettier/prettier/compare/3.2.5...3.3.0)\n\nUpdates `tsx` from 4.10.5 to 4.11.0\n- [Release notes](https://github.com/privatenumber/tsx/releases)\n- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)\n- [Commits](https://github.com/privatenumber/tsx/compare/v4.10.5...v4.11.0)\n\n---\nupdated-dependencies:\n- dependency-name: \"@types/node\"\n dependency-type: direct:development\n update-type: version-update:semver-minor\n dependency-group: non-major-node-dev-dependencies\n- dependency-name: lint-staged\n dependency-type: direct:development\n update-type: version-update:semver-patch\n dependency-group: non-major-node-dev-dependencies\n- dependency-name: prettier\n dependency-type: direct:development\n update-type: version-update:semver-minor\n dependency-group: non-major-node-dev-dependencies\n- dependency-name: tsx\n dependency-type: direct:development\n update-type: version-update:semver-minor\n dependency-group: non-major-node-dev-dependencies\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps-dev): bump the non-major-node-dev-dependencies group acros…"}},{"before":"57aeeb5dad21cd5b67beb80bbf4898bc806a0701","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/non-major-node-dev-dependencies-07729b437a","pushedAt":"2024-06-03T00:58:37.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":null,"after":"b9d39ca0d434e4db77fbcf4c0bd3c28a2bf3c7c4","ref":"refs/heads/dependabot/npm_and_yarn/non-major-node-dependencies-0ce88d167f","pushedAt":"2024-06-03T00:58:30.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":"build(deps): bump the non-major-node-dependencies group across 1 directory with 2 updates\n\nBumps the non-major-node-dependencies group with 2 updates in the / directory: [ajv](https://github.com/ajv-validator/ajv) and [yaml](https://github.com/eemeli/yaml).\n\n\nUpdates `ajv` from 8.13.0 to 8.14.0\n- [Release notes](https://github.com/ajv-validator/ajv/releases)\n- [Commits](https://github.com/ajv-validator/ajv/compare/v8.13.0...v8.14.0)\n\nUpdates `yaml` from 2.4.2 to 2.4.3\n- [Release notes](https://github.com/eemeli/yaml/releases)\n- [Commits](https://github.com/eemeli/yaml/compare/v2.4.2...v2.4.3)\n\n---\nupdated-dependencies:\n- dependency-name: ajv\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: non-major-node-dependencies\n- dependency-name: yaml\n dependency-type: direct:production\n update-type: version-update:semver-patch\n dependency-group: non-major-node-dependencies\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump the non-major-node-dependencies group across 1 dire…"}},{"before":"3482f796dbff887a2c4d8c1c6a3b0493990938bc","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/non-major-node-dependencies-5c35b2641f","pushedAt":"2024-06-03T00:58:20.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":null,"after":"3482f796dbff887a2c4d8c1c6a3b0493990938bc","ref":"refs/heads/dependabot/npm_and_yarn/non-major-node-dependencies-5c35b2641f","pushedAt":"2024-05-27T00:11:27.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":"build(deps): bump ajv in the non-major-node-dependencies group\n\nBumps the non-major-node-dependencies group with 1 update: [ajv](https://github.com/ajv-validator/ajv).\n\n\nUpdates `ajv` from 8.13.0 to 8.14.0\n- [Release notes](https://github.com/ajv-validator/ajv/releases)\n- [Commits](https://github.com/ajv-validator/ajv/compare/v8.13.0...v8.14.0)\n\n---\nupdated-dependencies:\n- dependency-name: ajv\n dependency-type: direct:production\n update-type: version-update:semver-minor\n dependency-group: non-major-node-dependencies\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump ajv in the non-major-node-dependencies group"}},{"before":null,"after":"57aeeb5dad21cd5b67beb80bbf4898bc806a0701","ref":"refs/heads/dependabot/npm_and_yarn/non-major-node-dev-dependencies-07729b437a","pushedAt":"2024-05-27T00:11:09.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":"build(deps-dev): bump the non-major-node-dev-dependencies group with 2 updates\n\nBumps the non-major-node-dev-dependencies group with 2 updates: [lint-staged](https://github.com/okonet/lint-staged) and [tsx](https://github.com/privatenumber/tsx).\n\n\nUpdates `lint-staged` from 15.2.2 to 15.2.5\n- [Release notes](https://github.com/okonet/lint-staged/releases)\n- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/okonet/lint-staged/compare/v15.2.2...v15.2.5)\n\nUpdates `tsx` from 4.10.5 to 4.11.0\n- [Release notes](https://github.com/privatenumber/tsx/releases)\n- [Changelog](https://github.com/privatenumber/tsx/blob/master/release.config.cjs)\n- [Commits](https://github.com/privatenumber/tsx/compare/v4.10.5...v4.11.0)\n\n---\nupdated-dependencies:\n- dependency-name: lint-staged\n dependency-type: direct:development\n update-type: version-update:semver-patch\n dependency-group: non-major-node-dev-dependencies\n- dependency-name: tsx\n dependency-type: direct:development\n update-type: version-update:semver-minor\n dependency-group: non-major-node-dev-dependencies\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps-dev): bump the non-major-node-dev-dependencies group with …"}},{"before":"436cf8ad72c9a71a46fad5f06234a75287067b63","after":"a147a5c3fc414f0b81d9263c37e3260647b2068b","ref":"refs/heads/try-gitlab-style-codeowners","pushedAt":"2024-05-20T15:16:04.000Z","pushType":"push","commitsCount":10,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"},"commit":{"message":"Merge branch 'main' into try-gitlab-style-codeowners","shortMessageHtmlLink":"Merge branch 'main' into try-gitlab-style-codeowners"}},{"before":"f5329b369292cb3cca99f52214bac23668aec1ca","after":"f92bebf910ab2c1a806d6d296ad093c2da7aa618","ref":"refs/heads/main","pushedAt":"2024-05-20T15:13:52.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"},"commit":{"message":"fix(codeowners/generate): adds tests for uncovered branches","shortMessageHtmlLink":"fix(codeowners/generate): adds tests for uncovered branches"}},{"before":"d49d9b158a8e9f9e43d6d05f6b9ba8a56f5f12ea","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/non-major-node-dev-dependencies-2b3f06c7bf","pushedAt":"2024-05-20T13:36:37.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"sverweij","name":"Sander Verweij","path":"/sverweij","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4822597?s=80&v=4"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEXMvq9QA","startCursor":null,"endCursor":null}},"title":"Activity · sverweij/virtual-code-owners"}