-
Notifications
You must be signed in to change notification settings - Fork 13
Comparing changes
Open a pull request
base repository: Yoast/PHPUnit-Polyfills
base: 1.1.4
head repository: Yoast/PHPUnit-Polyfills
compare: 1.1.5
- 16 commits
- 9 files changed
- 3 contributors
Commits on Mar 20, 2025
-
Composer: update to YoastCS 3.2.0
Refs: * https://github.com/Yoast/yoastcs/releases/tag/3.2.0 * https://github.com/PHPCSStandards/PHP_CodeSniffer/releases * https://github.com/PHPCSStandards/phpcsutils/releases * https://github.com/PHPCompatibility/PHPCompatibilityWP/releases * https://github.com/automattic/VIP-Coding-Standards/releases * https://github.com/sirbrillig/phpcs-variable-analysis/releases
Configuration menu - View commit details
-
Copy full SHA for 769b63b - Browse repository at this point
Copy the full SHA 769b63bView commit details -
Merge pull request #255 from Yoast/JRF/update-yoastcs-3.2.0
Composer: update to YoastCS 3.2.0
Configuration menu - View commit details
-
Copy full SHA for 43fba23 - Browse repository at this point
Copy the full SHA 43fba23View commit details
Commits on May 19, 2025
-
GH Actions: Bump DavidAnson/markdownlint-cli2-action from 19 to 20
Bumps [DavidAnson/markdownlint-cli2-action](https://github.com/davidanson/markdownlint-cli2-action) from 19 to 20. - [Release notes](https://github.com/davidanson/markdownlint-cli2-action/releases) - [Commits](DavidAnson/markdownlint-cli2-action@v19...v20) --- updated-dependencies: - dependency-name: DavidAnson/markdownlint-cli2-action dependency-version: '20' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 681b61e - Browse repository at this point
Copy the full SHA 681b61eView commit details -
Merge pull request #257 from Yoast/dependabot/github_actions/1.x/Davi…
…dAnson/markdownlint-cli2-action-20 GH Actions: Bump DavidAnson/markdownlint-cli2-action from 19 to 20
Configuration menu - View commit details
-
Copy full SHA for c81efd0 - Browse repository at this point
Copy the full SHA c81efd0View commit details -
Support for the `reviewers` key in `dependabot.yml` files is being removed by GitHub on May 20th 2025. The recommendation is to have a `CODEOWNERS` file to set reviewers instead. For now, this commit removes the `reviewers` key from the `dependabot.yml` file without replacing it. That should prevent comments being left in PRs by the dependabot bot account about the field no longer being supported. Ref: * https://github.blog/changelog/2025-04-29-dependabot-reviewers-configuration-option-being-replaced-by-code-owners/ * https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-file-location
Configuration menu - View commit details
-
Copy full SHA for f351497 - Browse repository at this point
Copy the full SHA f351497View commit details -
Merge pull request #258 from Yoast/JRF/feature/remove-dependabot-revi…
…ewers Dependabot: remove reviewers
Configuration menu - View commit details
-
Copy full SHA for f68a8d1 - Browse repository at this point
Copy the full SHA f68a8d1View commit details
Commits on Jul 28, 2025
-
GH Actions: remove GH Token set via
envAs of the release of `shivammathur/setup-php` v`2.35.0`, this should no longer be needed as the `setup-php` action runner will automatically use the `secrets.GITHUB_TOKEN` token. Ref: * https://github.com/shivammathur/setup-php/releases/tag/2.35.0 * shivammathur/setup-php@55463ff
Configuration menu - View commit details
-
Copy full SHA for cd833cb - Browse repository at this point
Copy the full SHA cd833cbView commit details -
Merge pull request #259 from Yoast/feature/ghactions-update-for-setup…
…-php-2.35.0 GH Actions: remove GH Token set via `env`
Configuration menu - View commit details
-
Copy full SHA for d77542d - Browse repository at this point
Copy the full SHA d77542dView commit details -
XTestCaseTest: update for PHPUnit 12.2.0
> A warning is now emitted when a data provider provides data sets that have more values than the test method consumes using arguments While not problematic for PHPUnit Polyfills 1.x - 3.x, this will fail tests for 4.x (without this change). Ref: https://github.com/sebastianbergmann/phpunit/blob/12.2/ChangeLog-12.2.md#changed-1
Configuration menu - View commit details
-
Copy full SHA for da773e5 - Browse repository at this point
Copy the full SHA da773e5View commit details -
Merge pull request #260 from Yoast/feature/update-xtestcasetest
XTestCaseTest: update for PHPUnit 12.2.0
Configuration menu - View commit details
-
Copy full SHA for 4313f03 - Browse repository at this point
Copy the full SHA 4313f03View commit details
Commits on Aug 10, 2025
-
PHP 8.5 | Tests: prevent deprecation notice for Reflection*::setAcces…
…sible() Since PHP 8.1, calling the `Reflection*::setAccessible()` methods is no longer necessary as reflected properties/methods/etc will always be accessible. However, the method calls are still needed for PHP < 8.1. As of PHP 8.5, calling the `Reflection*::setAccessible()` methods is now formally deprecated and will yield a deprecation notice, which will fail test runs. As of PHP 9.0, the `setAccessible()` method(s) will be removed. With the latter in mind, this commit prevents the deprecation notice by making the calls to `setAccessible()` conditional. Silencing the deprecation would mean, this would need to be "fixed" again come PHP 9.0, while the current solution should be stable, including for PHP 9.0. Ref: https://wiki.php.net/rfc/deprecations_php_8_5#extreflection_deprecations
Configuration menu - View commit details
-
Copy full SHA for 5c49998 - Browse repository at this point
Copy the full SHA 5c49998View commit details -
Merge pull request #261 from Yoast/feature/fix-runtime-deprecations-p…
…hp-8.5 PHP 8.5 | Tests: prevent deprecation notice for Reflection*::setAccessible()
Configuration menu - View commit details
-
Copy full SHA for 002a850 - Browse repository at this point
Copy the full SHA 002a850View commit details -
GH Actions: improve "don't run on forks" condition
Remove the condition containing a hard-coded repository name in favour of a more generic condition which should safeguard that the cron job doesn't run on forks just the same.
Configuration menu - View commit details
-
Copy full SHA for 8460324 - Browse repository at this point
Copy the full SHA 8460324View commit details -
Merge pull request #262 from Yoast/feature/ghactions-improve-dont-run…
…-cronjobs-on-forks-condition GH Actions: improve "don't run on forks" condition
Configuration menu - View commit details
-
Copy full SHA for 5d24d1b - Browse repository at this point
Copy the full SHA 5d24d1bView commit details -
Changelog for the 1.1.5 release
Includes updating the `VERSION` constant in the `Autoload` class.
Configuration menu - View commit details
-
Copy full SHA for 689d8b5 - Browse repository at this point
Copy the full SHA 689d8b5View commit details -
Merge pull request #263 from Yoast/feature/1.x/changelog-v1.1.5
Changelog for the 1.1.5 release
Configuration menu - View commit details
-
Copy full SHA for 41aaac4 - Browse repository at this point
Copy the full SHA 41aaac4View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 1.1.4...1.1.5