{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":140864153,"defaultBranch":"master","name":"PHPCompatibilityWP","ownerLogin":"PHPCompatibility","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2018-07-13T15:30:57.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/41186537?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1713994850.0","currentOid":""},"activityList":{"items":[{"before":"d427f4dcd33c0b79dad9c6eaa5b2039eed02ce71","after":null,"ref":"refs/heads/feature/changelog-2.1.5","pushedAt":"2024-04-24T21:38:00.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"}},{"before":"27ae51f3885e0474d614423e01b42d60598bd338","after":"01c1ff2704a58e46f0cb1ca9d06aee07b3589082","ref":"refs/heads/master","pushedAt":"2024-04-24T21:37:59.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"},"commit":{"message":"Merge pull request #58 from PHPCompatibility/feature/changelog-2.1.5\n\nChangelog for the release of version 2.1.5","shortMessageHtmlLink":"Merge pull request #58 from PHPCompatibility/feature/changelog-2.1.5"}},{"before":null,"after":"d427f4dcd33c0b79dad9c6eaa5b2039eed02ce71","ref":"refs/heads/feature/changelog-2.1.5","pushedAt":"2024-04-24T16:38:07.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"},"commit":{"message":"Changelog for the release of version 2.1.5","shortMessageHtmlLink":"Changelog for the release of version 2.1.5"}},{"before":"cd655a35875aee4fe7444ea96945b7b25f387406","after":"27ae51f3885e0474d614423e01b42d60598bd338","ref":"refs/heads/master","pushedAt":"2024-04-24T16:28:41.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"},"commit":{"message":"Merge pull request #55 from swissspidy/add/wp65-polyfills\n\nWP 6.5: account for new function polyfills","shortMessageHtmlLink":"Merge pull request #55 from swissspidy/add/wp65-polyfills"}},{"before":"373dcaf1adee9eaa0ca234c02b4cedb3e53cead7","after":"cd655a35875aee4fe7444ea96945b7b25f387406","ref":"refs/heads/master","pushedAt":"2024-04-24T16:18:45.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"},"commit":{"message":"Merge pull request #56 from fredden/feature/composer.lock-false\n\nComposer: avoid writing a lock file","shortMessageHtmlLink":"Merge pull request #56 from fredden/feature/composer.lock-false"}},{"before":"55cd61b20789a0aa53f70f4d79837f0a144134c4","after":null,"ref":"refs/heads/feature/ghactions-xmllint-bypass-apt-get-update","pushedAt":"2024-04-24T14:09:34.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"wimg","name":"Wim Godden","path":"/wimg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/313511?s=80&v=4"}},{"before":"02e4bf7d1f6b64f09abd93cae49166f1dae1f701","after":"373dcaf1adee9eaa0ca234c02b4cedb3e53cead7","ref":"refs/heads/master","pushedAt":"2024-04-24T14:09:32.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"wimg","name":"Wim Godden","path":"/wimg","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/313511?s=80&v=4"},"commit":{"message":"Merge pull request #57 from PHPCompatibility/feature/ghactions-xmllint-bypass-apt-get-update\n\nGH Actions: work around intermittent apt-get errors","shortMessageHtmlLink":"Merge pull request #57 from PHPCompatibility/feature/ghactions-xmllin…"}},{"before":null,"after":"55cd61b20789a0aa53f70f4d79837f0a144134c4","ref":"refs/heads/feature/ghactions-xmllint-bypass-apt-get-update","pushedAt":"2024-04-24T10:56:12.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"},"commit":{"message":"GH Actions: work around intermittent apt-get errors\n\nOkay, so apparently, there is a long-standing bug in the Microsoft package deploy process which caused `apt-get update` to fail in the first half hour after Microsoft has deployed a package.\n\nThe failure looks like this:\n```\nE: Failed to fetch https://packages.microsoft.com/ubuntu/22.04/prod/dists/jammy/InRelease Clearsigned file isn't valid, got 'NOSPLIT' (does the network require authentication?)\n```\n\nAs this only happens intermittently (after a MS package deploy), the chance of running into this bug are slim, but guess what: today I ran into it.\n\nThis change to the workflow is intended to prevent the next person running into this issue from having to waste time on figuring this out.\n\nBy splitting the \"Install xmllint\" step into two steps: one doing the `apt-get update` and one doing the actual install and making the first step one which is allowed to `continue-on-error`, this issue should hopefully not crop up anymore.\n\nAny errors in the `apt-get update` step will now be ignored and as most errors which could potentially come from that step are irrelevant for the rest of the job anyway, this is fine.\nIf a relevant error would be surfaced, the next step (the xmllint install), will fail the job anyway.\n\nRefs:\n* https://github.com/actions/runner-images/issues/3410\n* https://github.com/dotnet/core/issues/4167","shortMessageHtmlLink":"GH Actions: work around intermittent apt-get errors"}},{"before":"261a93b9ca6b64659cf7cb429f7c278bf00e50b2","after":null,"ref":"refs/heads/feature/composer-security-link","pushedAt":"2023-12-08T17:31:58.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"}},{"before":"faebb1a0f6de857d8e83da862be4b6bebc853415","after":"02e4bf7d1f6b64f09abd93cae49166f1dae1f701","ref":"refs/heads/master","pushedAt":"2023-12-08T17:31:57.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"},"commit":{"message":"Merge pull request #53 from PHPCompatibility/feature/composer-security-link\n\nComposer.json: add link to security policy","shortMessageHtmlLink":"Merge pull request #53 from PHPCompatibility/feature/composer-securit…"}},{"before":null,"after":"261a93b9ca6b64659cf7cb429f7c278bf00e50b2","ref":"refs/heads/feature/composer-security-link","pushedAt":"2023-12-08T17:28:22.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"},"commit":{"message":"Composer.json: add link to security policy\n\nThis is a new feature available since Composer 2.6.0, which was released a little while ago.\n\nWhen this key is added, it will also show a link to the security policy on Packagist.\n\nThe security policy itself has been added to the organisation `.github` repository and can be accessed via the `security/policy` link on each repo.\n\nRefs:\n* https://github.com/composer/composer/releases/tag/2.6.0\n* https://github.com/composer/composer/pull/11271\n* https://github.com/composer/packagist/pull/1353","shortMessageHtmlLink":"Composer.json: add link to security policy"}},{"before":"51772c309bede2e362208ac736072b278e93fd21","after":null,"ref":"refs/heads/feature/switch-to-fork-of-phpcs","pushedAt":"2023-12-08T17:27:59.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"}},{"before":"a1d8194a8442be9b7087136f5ec6cb2125716c8d","after":"faebb1a0f6de857d8e83da862be4b6bebc853415","ref":"refs/heads/master","pushedAt":"2023-12-08T17:27:58.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"},"commit":{"message":"Merge pull request #52 from PHPCompatibility/feature/switch-to-fork-of-phpcs\n\nSwitch to PHPCSStandards/PHP_CodeSniffer","shortMessageHtmlLink":"Merge pull request #52 from PHPCompatibility/feature/switch-to-fork-o…"}},{"before":"1925c2b0f2df527d4b7b52cbff67e2c4bb366628","after":"51772c309bede2e362208ac736072b278e93fd21","ref":"refs/heads/feature/switch-to-fork-of-phpcs","pushedAt":"2023-12-07T02:54:17.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"},"commit":{"message":"Switch to PHPCSStandards/PHP_CodeSniffer\n\nThe Squizlabs repo has been abandoned. The project continues in a fork in the PHPCSStandards organisation.\n\nRef:\n* squizlabs/PHP_CodeSniffer 3932","shortMessageHtmlLink":"Switch to PHPCSStandards/PHP_CodeSniffer"}},{"before":null,"after":"1925c2b0f2df527d4b7b52cbff67e2c4bb366628","ref":"refs/heads/feature/switch-to-fork-of-phpcs","pushedAt":"2023-12-01T20:48:05.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"},"commit":{"message":"Switch to PHPCSStandards/PHP_CodeSniffer\n\nThe Squizlabs repo has been abandoned. The project continues in a fork in the PHPCSStandards organisation.\n\nIncludes updating the dev required version of the Composer plugin, which should make sure that this repo already switches over to using the PHPCSStandards version of PHPCS.\n\nIncludes updating the suggested version of the Composer plugin to the version which made the same change.\n\nRef:\n* squizlabs/PHP_CodeSniffer 3932","shortMessageHtmlLink":"Switch to PHPCSStandards/PHP_CodeSniffer"}},{"before":"52f67faa439dfb4e53bb6dff89313e2b8bafcaed","after":null,"ref":"refs/heads/feature/ghactions-minor-tweak","pushedAt":"2023-11-14T01:21:02.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"}},{"before":"1708fc935ceeff3ec57dca5b1b18666403e53fba","after":"a1d8194a8442be9b7087136f5ec6cb2125716c8d","ref":"refs/heads/master","pushedAt":"2023-11-14T01:21:01.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"},"commit":{"message":"Merge pull request #51 from PHPCompatibility/feature/ghactions-minor-tweak\n\nGH Actions: ensure all steps have a name","shortMessageHtmlLink":"Merge pull request #51 from PHPCompatibility/feature/ghactions-minor-…"}},{"before":null,"after":"52f67faa439dfb4e53bb6dff89313e2b8bafcaed","ref":"refs/heads/feature/ghactions-minor-tweak","pushedAt":"2023-11-14T01:14:51.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"},"commit":{"message":"GH Actions: ensure all steps have a name","shortMessageHtmlLink":"GH Actions: ensure all steps have a name"}},{"before":"d544ca16017d49db5ed5c176878406f27b3a91f9","after":null,"ref":"refs/heads/dependabot/github_actions/actions/checkout-4","pushedAt":"2023-09-27T11:31:42.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"}},{"before":"24dfaf8bb12115a72e2cf68b3d0ff2a18bf244ad","after":"1708fc935ceeff3ec57dca5b1b18666403e53fba","ref":"refs/heads/master","pushedAt":"2023-09-27T11:31:41.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"},"commit":{"message":"Merge pull request #49 from PHPCompatibility/dependabot/github_actions/actions/checkout-4\n\nGH Actions: Bump actions/checkout from 3 to 4","shortMessageHtmlLink":"Merge pull request #49 from PHPCompatibility/dependabot/github_action…"}},{"before":null,"after":"d544ca16017d49db5ed5c176878406f27b3a91f9","ref":"refs/heads/dependabot/github_actions/actions/checkout-4","pushedAt":"2023-09-27T11:08:40.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":"GH Actions: Bump actions/checkout from 3 to 4\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v3...v4)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"GH Actions: Bump actions/checkout from 3 to 4"}},{"before":"f94e61c102775fdb471bd91a61cea0a393504167","after":null,"ref":"refs/heads/feature/add-dependabot-config-for-ghactions","pushedAt":"2023-09-27T11:07:54.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"GaryJones","name":"Gary Jones","path":"/GaryJones","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/88371?s=80&v=4"}},{"before":"96bce8776a2a83c6bad3a7e1ae75b2598b660197","after":"24dfaf8bb12115a72e2cf68b3d0ff2a18bf244ad","ref":"refs/heads/master","pushedAt":"2023-09-27T11:07:53.000Z","pushType":"pr_merge","commitsCount":2,"pusher":{"login":"GaryJones","name":"Gary Jones","path":"/GaryJones","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/88371?s=80&v=4"},"commit":{"message":"Merge pull request #47 from PHPCompatibility/feature/add-dependabot-config-for-ghactions","shortMessageHtmlLink":"Merge pull request #47 from PHPCompatibility/feature/add-dependabot-c…"}},{"before":null,"after":"f94e61c102775fdb471bd91a61cea0a393504167","ref":"refs/heads/feature/add-dependabot-config-for-ghactions","pushedAt":"2023-09-12T18:41:46.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"},"commit":{"message":"Add dependabot configuration file\n\nThis commit adds an initial Dependabot configuration to:\n* Submit pull requests for security updates and version updates for GH Action runner dependencies.\n\nThis PR doesn't include a config for the Composer dependencies as those will always need managed updates for this repo.\n\nThe configuration has been set up to:\n* Run weekly (for now).\n* Submit a maximum of 5 pull requests at a time.\n If additional pull requests are needed, these will subsequently be submitted the next time Dependabot runs after one or more of the open pull requests have been merged.\n* The commit messages for PRs submitted by Dependabot will be prefixed according the unofficial conventions used in this repo up to now.\n* The PRs will automatically be labelled with an appropriate label as already in use in this repo.\n\nRefs:\n* https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file\n* https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file#versioning-strategy","shortMessageHtmlLink":"Add dependabot configuration file"}},{"before":"262f9d81273932315d15d704f69b9d678b939cb3","after":"96bce8776a2a83c6bad3a7e1ae75b2598b660197","ref":"refs/heads/master","pushedAt":"2023-08-18T03:16:17.000Z","pushType":"pr_merge","commitsCount":3,"pusher":{"login":"jrfnl","name":"Juliette","path":"/jrfnl","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/663378?s=80&v=4"},"commit":{"message":"Merge pull request #46 from johnbillion/meta-updates-1\n\nMeta updates","shortMessageHtmlLink":"Merge pull request #46 from johnbillion/meta-updates-1"}}],"hasNextPage":false,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAEOZORDwA","startCursor":null,"endCursor":null}},"title":"Activity · PHPCompatibility/PHPCompatibilityWP"}