{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":45135905,"defaultBranch":"main","name":"junit5","ownerLogin":"sbrannen","currentUserCanPush":false,"isFork":true,"isEmpty":false,"createdAt":"2015-10-28T19:10:53.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/104798?v=4","public":true,"private":false,"isOrgOwned":false},"refInfo":{"name":"","listCacheKey":"v0:1721390622.0","currentOid":""},"activityList":{"items":[{"before":"f272b990e80750c914b5d41bc460789205613c73","after":"ae20d63bd301171200a2b0f7b71d5ebd915e0eff","ref":"refs/heads/main","pushedAt":"2024-07-23T14:09:44.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Bump github/combine-prs from 5.0.0 to 5.1.0\n\nBumps [github/combine-prs](https://github.com/github/combine-prs) from 5.0.0 to 5.1.0.\n- [Release notes](https://github.com/github/combine-prs/releases)\n- [Commits](https://github.com/github/combine-prs/compare/v5.0.0...v5.1.0)\n\n---\nupdated-dependencies:\n- dependency-name: github/combine-prs\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"Bump github/combine-prs from 5.0.0 to 5.1.0"}},{"before":null,"after":"f3f661ced2a198cf67796259b0936a539d0680ef","ref":"refs/heads/issues/3437-ExtendWith-on-fields-early-registration","pushedAt":"2024-07-19T12:03:42.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Register extension via @⁠ExtendWith on a non-static field\n\nThis commit is truly just an \"experiment\". The actual \"fix\" might take\na completely different approach.\n\nVarious tests in ExtensionRegistrationViaParametersAndFieldsTests fail\nwith the changes in this commit.\n\nIssue: #3437","shortMessageHtmlLink":"Register extension via @⁠ExtendWith on a non-static field"}},{"before":"963f77559446343781cae04f9e29831eaa74f842","after":"f272b990e80750c914b5d41bc460789205613c73","ref":"refs/heads/main","pushedAt":"2024-07-19T08:25:54.000Z","pushType":"push","commitsCount":16,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Add Route4Me as bronze sponsor","shortMessageHtmlLink":"Add Route4Me as bronze sponsor"}},{"before":"5c0624b125a106b5698ec03e739ed3c4d5097f8e","after":"963f77559446343781cae04f9e29831eaa74f842","ref":"refs/heads/main","pushedAt":"2024-07-02T15:02:08.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Exclude JTE code generator model from Eclipse classpath","shortMessageHtmlLink":"Exclude JTE code generator model from Eclipse classpath"}},{"before":"f95d4e8b091cc66971009eba3e8d9c7b1181cd98","after":"5c0624b125a106b5698ec03e739ed3c4d5097f8e","ref":"refs/heads/main","pushedAt":"2024-07-02T14:21:10.000Z","pushType":"push","commitsCount":58,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Add missing words / Remove unnecessary word","shortMessageHtmlLink":"Add missing words / Remove unnecessary word"}},{"before":"69e7b53e678262e2e7f00a72ae6f4e944831f545","after":"f95d4e8b091cc66971009eba3e8d9c7b1181cd98","ref":"refs/heads/main","pushedAt":"2024-06-02T13:40:22.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Introduce named argument set support for `@⁠ParameterizedTest` (#3825)\n\nPrior to this commit, it was possible to use the Named API to provide\r\ncustom names for individual arguments for a @⁠ParameterizedTest when\r\nusing @⁠MethodSource, @⁠FieldSource, or @⁠ArgumentsSource, but it was\r\nnot possible to provide a custom name for an entire set of arguments\r\nwithout resolving to obtuse workarounds.\r\n\r\nTo address that, this commit introduces an argumentSet(String,Object...)\r\nstatic factory method in Arguments for providing a custom name for an\r\nentire set of arguments for a @⁠ParameterizedTest.\r\n\r\nThis commit also introduces the following placeholders for the display\r\nname of a @⁠ParameterizedTest.\r\n\r\n- {argumentSetName} :: the name of the argument set\r\n\r\n- {argumentSetNameOrArgumentsWithNames} :: resolves to {argumentSetName}\r\n or {argumentsWithNames}, depending on how the arguments are supplied\r\n\r\nIn addition, the default display name for a @⁠ParameterizedTest\r\nis now \"[{index}] {argumentSetNameOrArgumentsWithNames}\".\r\n\r\nFor example, given the following...\r\n\r\n@⁠ParameterizedTest\r\n@⁠FieldSource\r\nvoid argumentSets(File file1, File file2) {\r\n}\r\n\r\nstatic List argumentSets = List.of(\r\n argumentSet(\"Important files\", new File(\"path1\"), new File(\"path2\")),\r\n argumentSet(\"Other files\", new File(\"path3\"), new File(\"path4\"))\r\n);\r\n\r\n... the resulting display names are:\r\n\r\n[1] Important files\r\n[2] Other files\r\n\r\nSee #3825\r\nCloses #3818","shortMessageHtmlLink":"Introduce named argument set support for @⁠ParameterizedTest (junit…"}},{"before":"fdd66fa5934cb6184c89090f058ef8ac1a2aa492","after":null,"ref":"refs/heads/issues/3818-ArgumentSet","pushedAt":"2024-06-02T13:07:24.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"}},{"before":"5151af210b7faedb11322a0427e9b9c1d4026539","after":"fdd66fa5934cb6184c89090f058ef8ac1a2aa492","ref":"refs/heads/issues/3818-ArgumentSet","pushedAt":"2024-06-02T13:04:31.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Introduce named argument set support for @⁠ParameterizedTest\n\nPrior to this commit, it was possible to use the Named API to provide\ncustom names for individual arguments for a @⁠ParameterizedTest when\nusing @⁠MethodSource, @⁠FieldSource, or @⁠ArgumentsSource, but it was\nnot possible to provide a custom name for an entire set of arguments\nwithout resolving to obtuse workarounds.\n\nTo address that, this commit introduces an argumentSet(String,Object...)\nstatic factory method in Arguments for providing a custom name for an\nentire set of arguments for a @⁠ParameterizedTest.\n\nThis commit also introduces the following placeholders for the display\nname of a @⁠ParameterizedTest.\n\n- {argumentSetName} :: the name of the argument set\n\n- {argumentSetNameOrArgumentsWithNames} :: resolves to {argumentSetName}\n or {argumentsWithNames}, depending on how the arguments are supplied\n\nIn addition, the default display name for a @⁠ParameterizedTest\nis now \"[{index}] {argumentSetNameOrArgumentsWithNames}\".\n\nFor example, given the following...\n\n@⁠ParameterizedTest\n@⁠FieldSource\nvoid argumentSets(File file1, File file2) {\n}\n\nstatic List argumentSets = List.of(\n argumentSet(\"Important files\", new File(\"path1\"), new File(\"path2\")),\n argumentSet(\"Other files\", new File(\"path3\"), new File(\"path4\"))\n);\n\n... the resulting display names are:\n\n[1] Important files\n[2] Other files\n\nCloses #3818","shortMessageHtmlLink":"Introduce named argument set support for @⁠ParameterizedTest"}},{"before":"415401c5ead60046d5ff805ea2917c86fed9a31d","after":"5151af210b7faedb11322a0427e9b9c1d4026539","ref":"refs/heads/issues/3818-ArgumentSet","pushedAt":"2024-06-02T12:54:13.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Introduce named argument set support for @⁠ParameterizedTest\n\nPrior to this commit, it was possible to use the Named API to provide\ncustom names for individual arguments for a @⁠ParameterizedTest when\nusing @⁠MethodSource, @⁠FieldSource, or @⁠ArgumentsSource, but it was\nnot possible to provide a custom name for an entire set of arguments\nwithout resolving to obtuse workarounds.\n\nTo address that, this commit introduces an argumentSet(String,Object...)\nstatic factory method in Arguments for providing a custom name for an\nentire set of arguments for a @⁠ParameterizedTest.\n\nThis commit also introduces the following placeholders for the display\nname of a @⁠ParameterizedTest.\n\n- {argumentSetName} :: the name of the argument set\n\n- {argumentSetNameOrArgumentsWithNames} :: resolves to {argumentSetName}\n or {argumentsWithNames}, depending on how the arguments are supplied\n\nIn addition, the default display name for a @⁠ParameterizedTest\nis now \"[{index}] {argumentSetNameOrArgumentsWithNames}\".\n\nFor example, given the following...\n\n@⁠ParameterizedTest\n@⁠FieldSource\nvoid argumentSets(File file1, File file2) {\n}\n\nstatic List argumentSets = List.of(\n argumentSet(\"Important files\", new File(\"path1\"), new File(\"path2\")),\n argumentSet(\"Other files\", new File(\"path3\"), new File(\"path4\"))\n);\n\n... the resulting display names are:\n\n[1] Important files\n[2] Other files\n\nCloses #3818","shortMessageHtmlLink":"Introduce named argument set support for @⁠ParameterizedTest"}},{"before":"4a0a45b82c8d4ca31488da68ecf7da62bc8315ce","after":"415401c5ead60046d5ff805ea2917c86fed9a31d","ref":"refs/heads/issues/3818-ArgumentSet","pushedAt":"2024-06-02T12:12:15.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Introduce named argument set support for @⁠ParameterizedTest\n\nRunning ArgumentSetDemo, results in the following output:\n\n[1] Important Files\n[2] Other Files\n\nImportant Files :: path1, path2\nOther Files :: path3, path4\n\n[1] Mixed Arguments Types :: Important Files\n[2] Mixed Arguments Types :: file1=path3, file2=path4\n\nCloses #3818","shortMessageHtmlLink":"Introduce named argument set support for @⁠ParameterizedTest"}},{"before":"6c5a9a092aa6cfe5f6eb0323ba19a83022b6dd3a","after":"69e7b53e678262e2e7f00a72ae6f4e944831f545","ref":"refs/heads/main","pushedAt":"2024-06-02T12:02:37.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Polish \"Customizing Display Names\" documentation","shortMessageHtmlLink":"Polish \"Customizing Display Names\" documentation"}},{"before":"b1183c9ce6e7e391d94c564d079ab464fe00b421","after":"6c5a9a092aa6cfe5f6eb0323ba19a83022b6dd3a","ref":"refs/heads/main","pushedAt":"2024-06-02T11:07:52.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Prevent infinite recursion in rootCause() condition\n\nSee #3839","shortMessageHtmlLink":"Prevent infinite recursion in rootCause() condition"}},{"before":"9b7957ae01f4702bd775b2c1cc343561a17cc591","after":"b1183c9ce6e7e391d94c564d079ab464fe00b421","ref":"refs/heads/main","pushedAt":"2024-06-02T10:19:49.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Update User Guide regarding @⁠FieldSource","shortMessageHtmlLink":"Update User Guide regarding @⁠FieldSource"}},{"before":"f82aefa44fc60e7e6e76adca7cabba093ff401d9","after":"9b7957ae01f4702bd775b2c1cc343561a17cc591","ref":"refs/heads/main","pushedAt":"2024-06-01T14:51:40.000Z","pushType":"push","commitsCount":2,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Introduce rootCause() condition for use with the EngineTestKit\n\nCloses #3839","shortMessageHtmlLink":"Introduce rootCause() condition for use with the EngineTestKit"}},{"before":"ac3a7854db950f971b68f53675c8c87de8f7ad1e","after":"a00b9b966bfd65308cd093ced2b4ba3384d6a87f","ref":"refs/heads/issues/3839-EngineTestKit-rootCause-condition","pushedAt":"2024-06-01T14:50:46.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Introduce rootCause() condition for use with the EngineTestKit\n\nCloses #3839","shortMessageHtmlLink":"Introduce rootCause() condition for use with the EngineTestKit"}},{"before":"e5431556036e1de942c6698f247ba0dfd08088b9","after":"ac3a7854db950f971b68f53675c8c87de8f7ad1e","ref":"refs/heads/issues/3839-EngineTestKit-rootCause-condition","pushedAt":"2024-06-01T14:48:46.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Introduce rootCause() condition for use with the EngineTestKit\n\nCloses #3839","shortMessageHtmlLink":"Introduce rootCause() condition for use with the EngineTestKit"}},{"before":null,"after":"e5431556036e1de942c6698f247ba0dfd08088b9","ref":"refs/heads/issues/3839-EngineTestKit-rootCause-condition","pushedAt":"2024-06-01T11:52:30.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Introduce rootCause() condition for use with the EngineTestKit\n\nSee #3839","shortMessageHtmlLink":"Introduce rootCause() condition for use with the EngineTestKit"}},{"before":"430a4610f30496b06165c17de606e8389bc92d29","after":"4a0a45b82c8d4ca31488da68ecf7da62bc8315ce","ref":"refs/heads/issues/3818-ArgumentSet","pushedAt":"2024-05-20T16:55:25.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Introduce named argument set support for @⁠ParameterizedTest\n\nRunning ArgumentSetDemo, results in the following output:\n\n[1] Important Files\n[2] Other Files\n\nImportant Files :: path1, path2\nOther Files :: path3, path4\n\n[1] Mixed Arguments Types :: Important Files\n[2] Mixed Arguments Types :: file1=path3, file2=path4\n\nCloses #3818","shortMessageHtmlLink":"Introduce named argument set support for @⁠ParameterizedTest"}},{"before":null,"after":"430a4610f30496b06165c17de606e8389bc92d29","ref":"refs/heads/issues/3818-ArgumentSet","pushedAt":"2024-05-20T15:30:06.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Introduce named argument set support for @⁠ParameterizedTest\n\nRunning ArgumentSetDemo, results in the following output:\n\n[1] Important Files\n[2] Other Files\n\nImportant Files :: path1, path2\nOther Files :: path3, path4\n\n[1] Mixed Arguments Types :: Important Files\n[2] Mixed Arguments Types :: file1=path3, file2=path4\n\nCloses #3818","shortMessageHtmlLink":"Introduce named argument set support for @⁠ParameterizedTest"}},{"before":"216758c9300034c264f7d41a0f28cbaed46d5043","after":"f82aefa44fc60e7e6e76adca7cabba093ff401d9","ref":"refs/heads/main","pushedAt":"2024-05-20T11:38:38.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Polishing","shortMessageHtmlLink":"Polishing"}},{"before":"254484d34029e2193c17b1a2ce6516862acfb06d","after":"498e822767564714fe7415fc773c1435576db06b","ref":"refs/heads/issues/3818-NamedArguments","pushedAt":"2024-05-20T11:27:34.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Avoid package cycle introduced by Javadoc cross-references","shortMessageHtmlLink":"Avoid package cycle introduced by Javadoc cross-references"}},{"before":"c404eb843385e1fad1f1ff093ecb751056d0a0da","after":"254484d34029e2193c17b1a2ce6516862acfb06d","ref":"refs/heads/issues/3818-NamedArguments","pushedAt":"2024-05-19T15:38:18.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Avoid package cycle introduced by Javadoc cross-references","shortMessageHtmlLink":"Avoid package cycle introduced by Javadoc cross-references"}},{"before":"b563ec065d96ac0e24d9f427eee930df02568d79","after":"c404eb843385e1fad1f1ff093ecb751056d0a0da","ref":"refs/heads/issues/3818-NamedArguments","pushedAt":"2024-05-19T15:32:47.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Simplify formatter tests due to changes in 0d1e8198a4","shortMessageHtmlLink":"Simplify formatter tests due to changes in 0d1e819"}},{"before":"ed741f53f988b0f9145aa003124abbbc4822ec67","after":"b563ec065d96ac0e24d9f427eee930df02568d79","ref":"refs/heads/issues/3818-NamedArguments","pushedAt":"2024-05-19T15:14:36.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Base default display name on new {argumentSetNameOrArgumentsWithNames} placeholder\n\nSee #3818","shortMessageHtmlLink":"Base default display name on new {argumentSetNameOrArgumentsWithNames…"}},{"before":"422c2f27a760e857667578c0adfcf42943bb364a","after":"ed741f53f988b0f9145aa003124abbbc4822ec67","ref":"refs/heads/issues/3818-NamedArguments","pushedAt":"2024-05-19T14:36:56.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Rename NamedArguments to ArgumentSet\n\nSee #3818","shortMessageHtmlLink":"Rename NamedArguments to ArgumentSet"}},{"before":"e862cce29ba9d47cb9f030ffe645359cfddfb5f4","after":"422c2f27a760e857667578c0adfcf42943bb364a","ref":"refs/heads/issues/3818-NamedArguments","pushedAt":"2024-05-19T14:33:14.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Rename NamedArguments to ArgumentSet\n\nSee #3818","shortMessageHtmlLink":"Rename NamedArguments to ArgumentSet"}},{"before":"e01e808b2e188357570f3b9bb420e72b6dc8e2b0","after":"e862cce29ba9d47cb9f030ffe645359cfddfb5f4","ref":"refs/heads/issues/3818-NamedArguments","pushedAt":"2024-05-18T13:13:38.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Polishing","shortMessageHtmlLink":"Polishing"}},{"before":"52292bbd97f661fdcc5a742dd13b32b48b34736e","after":"e01e808b2e188357570f3b9bb420e72b6dc8e2b0","ref":"refs/heads/issues/3818-NamedArguments","pushedAt":"2024-05-18T13:05:08.000Z","pushType":"push","commitsCount":3,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Introduce display name placeholder & default pattern for NamedArguments\n\nRunning NamedArgumentsSetDemo, now results in the following output for\nthe two parameterized test methods:\n\nDefault display name:\n\n[1] Important Files\n[2] Other Files\n\nCustom display name (\"{namedArguments} :: {argumentsWithNames}\"):\n\nImportant Files :: file1=path1, file2=path2\nOther Files :: file1=path3, file2=path4\n\nSee #3818","shortMessageHtmlLink":"Introduce display name placeholder & default pattern for NamedArguments"}},{"before":"606e46db96651657cd42f64acada31633725d8da","after":"52292bbd97f661fdcc5a742dd13b32b48b34736e","ref":"refs/heads/issues/3818-NamedArguments","pushedAt":"2024-05-18T11:01:44.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Do not implement Named in NamedArguments\n\nRationale: there is no benefit to implementing Named, since\nwe never need access to the \"payload\". The NamedArguments on its own\nis sufficient for this use case.\n\nSee #3818","shortMessageHtmlLink":"Do not implement Named<Arguments> in NamedArguments"}},{"before":"a422c5a225c7e3b392b1efbfac291296d528740e","after":"216758c9300034c264f7d41a0f28cbaed46d5043","ref":"refs/heads/main","pushedAt":"2024-05-17T15:28:38.000Z","pushType":"push","commitsCount":4,"pusher":{"login":"sbrannen","name":"Sam Brannen","path":"/sbrannen","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/104798?s=80&v=4"},"commit":{"message":"Polish release notes","shortMessageHtmlLink":"Polish release notes"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEhu_PYwA","startCursor":null,"endCursor":null}},"title":"Activity · sbrannen/junit5"}