Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update all non-major dependencies #179

Open
wants to merge 1 commit into
base: 1.6.x
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 6, 2024

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
laminas/laminas-ci-matrix-action action patch 1.27.0 -> 1.27.2 age adoption passing confidence
laminas/laminas-continuous-integration-action action patch 1.40.0 -> 1.40.1 age adoption passing confidence
php require minor ~8.1.0 || ~8.2.0 -> ~8.1.0 || ~8.2.0 || ~8.3.0 age adoption passing confidence
phpunit/phpunit (source) require patch ^9.6.20 -> ^9.6.21 age adoption passing confidence
squizlabs/php_codesniffer require-dev minor ^3.10.2 -> ^3.11.1 age adoption passing confidence
vimeo/psalm require-dev patch ^5.25.0 -> ^5.26.1 age adoption passing confidence

Release Notes

laminas/laminas-ci-matrix-action (laminas/laminas-ci-matrix-action)

v1.27.2

Compare Source

Release Notes for 1.27.2

1.27.x bugfix release (patch)

1.27.2
  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1
Bug

v1.27.1

Compare Source

Release Notes for 1.27.1
1.27.1
  • Total issues resolved: 0
  • Total pull requests resolved: 1
  • Total contributors: 1
Bug
laminas/laminas-continuous-integration-action (laminas/laminas-continuous-integration-action)

v1.40.1

Compare Source

Release Notes for 1.40.1
1.40.1
  • Total issues resolved: 1
  • Total pull requests resolved: 0
  • Total contributors: 1
Enhancement
containerbase/php-prebuild (php)

v8.3.13

Compare Source

Bug Fixes
  • deps: update dependency php to v8.3.13

v8.3.12

Compare Source

Bug Fixes
  • deps: update dependency php to v8.3.12

v8.3.11

Compare Source

Bug Fixes
  • deps: update dependency php to v8.3.11

v8.3.10

Compare Source

Bug Fixes
  • deps: update dependency php to v8.3.10

v8.3.9

Compare Source

Bug Fixes
  • deps: update dependency php to v8.3.9

v8.3.8

Compare Source

Bug Fixes
  • deps: update dependency php to v8.3.8

v8.3.7

Compare Source

Bug Fixes
  • deps: update dependency php to v8.3.7

v8.3.6

Compare Source

Bug Fixes
  • deps: update dependency php to v8.3.6

v8.3.4

Compare Source

Bug Fixes
  • deps: update dependency php to v8.3.4

v8.3.3

Compare Source

Bug Fixes
  • deps: update dependency php to v8.3.3

v8.3.2

Compare Source

Bug Fixes
  • deps: update dependency php to v8.3.2

v8.3.1

Compare Source

Bug Fixes
  • deps: update dependency php to v8.3.1

v8.3.0

Compare Source

Bug Fixes
  • deps: update dependency php to v8.3.0
sebastianbergmann/phpunit (phpunit/phpunit)

v9.6.21: PHPUnit 9.6.21

Compare Source

Changed
  • #​5956: Deprecation of the E_STRICT constant in PHP 8.4
  • Removed .phpstorm.meta.php file as methods such as TestCase::createStub() use generics / template types for their return types and PhpStorm, for example, uses that information

How to install or update PHPUnit

PHPCSStandards/PHP_CodeSniffer (squizlabs/php_codesniffer)

v3.11.1

Compare Source

Changed
  • Output from the --generator=... feature will respect the OS-expected EOL char in more places. #​671
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Various housekeeping, including improvements to the tests and documentation.
    • Thanks to [Bartosz Dziewoński][@​MatmaRex] and [Juliette Reinders Folmer][@​jrfnl] for their contributions.
Fixed
  • Fixed bug #​674 : Generic.WhiteSpace.HereNowdocIdentifierSpacing broken XML documentation
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Fixed bug #​675 : InvalidArgumentException when a ruleset includes a sniff by file name and the included sniff does not comply with the PHPCS naming conventions.
    • Notwithstanding this fix, it is strongly recommended to ensure custom sniff classes comply with the PHPCS naming conventions.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.

v3.11.0

Compare Source

Added
  • Runtime support for PHP 8.4. All known PHP 8.4 deprecation notices have been fixed.
    • Syntax support for new PHP 8.4 features will follow in a future release.
    • If you find any PHP 8.4 deprecation notices which were missed, please report them.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patches.
  • Tokenizer support for PHP 8.3 "yield from" expressions with a comment between the keywords. #​529, #​647
    • Sniffs explicitly handling T_YIELD_FROM tokens may need updating. The PR description contains example code for use by sniff developers.
    • Additionally, the following sniff has been updated to support "yield from" expressions with comments:
      • Generic.WhiteSpace.LanguageConstructSpacing
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • New Generic.WhiteSpace.HereNowdocIdentifierSpacing sniff. #​586, #​637
    • Forbid whitespace between the <<< and the identifier string in heredoc/nowdoc start tokens.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • New Generic.Strings.UnnecessaryHeredoc sniff. #​633
    • Warns about heredocs without interpolation or expressions in the body text and can auto-fix these to nowdocs.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Documentation for the following sniffs:
    • Generic.Arrays.ArrayIndent
    • Squiz.PHP.Heredoc
    • Thanks to [Rodrigo Primo][@​rodrigoprimo] and [Juliette Reinders Folmer][@​jrfnl] for the patches.
Changed
  • The Common::getSniffCode() method will now throw an InvalidArgumentException exception if an invalid $sniffClass is passed. #​524, #​625
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Documentation generated using the --generator=... feature will now always be presented in natural order based on the sniff name(s). #​668
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Minor improvements to the display of runtime information. #​658
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.
  • Squiz.Commenting.PostStatementComment: trailing annotations in PHP files will now be reported under a separate, non-auto-fixable error code AnnotationFound. #​560, #​627
    • This prevents (tooling related) annotations from taking on a different meaning when moved by the fixer.
    • The separate error code also allows for selectively excluding it to prevent the sniff from triggering on trailing annotations, while still forbidding other trailing comments.
    • Thanks to [Rodrigo Primo][@​rodrigoprimo] for the patch.
  • Squiz.ControlStructures.ForEachLoopDeclaration: the SpacingAfterOpen error code has been replaced by the SpaceAfterOpen error code. The latter is a pre-existing code. The former appears to have been a typo. #​582
  • The following sniff(s) have received efficiency improvements:
    • Generic.Classes.DuplicateClassName
    • Generic.NamingConventions.ConstructorName
    • Thanks to [Rodrigo Primo][@​rodrigoprimo] and [Juliette Reinders Folmer][@​jrfnl] for the patches.
  • Various housekeeping, including improvements to the tests and documentation.
Fixed
  • Fixed bug #​3808 : Generic.WhiteSpace.ScopeIndent would throw false positive for tab indented multi-token yield from expression.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Fixed bug #​630 : The tokenizer could inadvertently transform "normal" parentheses to DNF parentheses, when a function call was preceded by a switch-case / alternative syntax control structure colon.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Fixed bug #​645 : On PHP 5.4, if yield was used as the declaration name for a function declared to return by reference, the function name would incorrectly be tokenized as T_YIELD instead of T_STRING.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Fixed bug #​647 : Tokenizer not applying tab replacement in single token "yield from" keywords.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Fixed bug #​647 : Generic.WhiteSpace.DisallowSpaceIndent did not flag space indentation in multi-line yield from.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Fixed bug #​647 : Generic.WhiteSpace.DisallowTabIndent did not flag tabs inside yield from.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Fixed bug #​652 : Generic.NamingConventions.ConstructorName: false positives for PHP-4 style calls to PHP-4 style parent constructor when a method with the same name as the parent class was called on another class.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Fixed bug #​652 : Generic.NamingConventions.ConstructorName: false negatives for PHP-4 style calls to parent constructor for function calls with whitespace and comments in unconventional places.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Fixed bug #​653 : Generic.Classes.DuplicateClassName : the sniff did not skip namespace keywords used as operators, which could lead to false positives.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Fixed bug #​653 : Generic.Classes.DuplicateClassName : sniff going into an infinite loop during live coding.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Fixed bug #​653 : Generic.Classes.DuplicateClassName : false positives/negatives when a namespace declaration contained whitespace or comments in unconventional places.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Fixed bug #​653 : Generic.Classes.DuplicateClassName : namespace for a file going in/out of PHP was not remembered/applied correctly.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch

v3.10.3

Compare Source

Changed
  • Various housekeeping, including improvements to the tests and documentation.
Fixed
  • Fixed bug #​553 : Squiz.Classes.SelfMemberReference: false negative(s) when namespace operator was encountered between the namespace declaration and the OO declaration.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Fixed bug #​579 : AbstractPatternSniff: potential PHP notice during live coding.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Fixed bug #​580 : Squiz.Formatting.OperatorBracket: potential PHP notice during live coding.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Fixed bug #​581 : PSR12.ControlStructures.ControlStructureSpacing: prevent fixer conflict by correctly handling multiple empty newlines before the first condition in a multi-line control structure.
  • Fixed bug #​585 : Tokenizer not applying tab replacement in heredoc/nowdoc openers.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Fixed bug #​588 : Squiz.PHP.EmbeddedPhp false positive when checking spaces after a PHP short open tag.
  • Fixed bug #​597 : Generic.PHP.LowerCaseKeyword did not flag nor fix non-lowercase anonymous class keywords.
    • Thanks to [Marek Štípek][@​maryo] for the patch.
  • Fixed bug #​598 : Squiz.PHP.DisallowMultipleAssignments: false positive on assignments to variable property on object stored in array.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
  • Fixed bug #​608 : Squiz.Functions.MultiLineFunctionDeclaration did not take (parameter) attributes into account when checking for one parameter per line.
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch
Other
  • The provenance of PHAR files associated with a release can now be verified via GitHub Artifact Attestations using the GitHub CLI tool with the following command: gh attestation verify [phpcs|phpcbf].phar -o PHPCSStandards. #​574
    • Thanks to [Juliette Reinders Folmer][@​jrfnl] for the patch.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

Read more about the use of Renovate Bot within ocramius/* projects.

@renovate renovate bot added the renovate label Aug 6, 2024
Copy link
Contributor Author

renovate bot commented Aug 6, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: composer.lock
Command failed: composer update php:8.3.13 phpunit/phpunit:9.6.21 squizlabs/php_codesniffer:3.11.1 vimeo/psalm:5.26.1 --with-dependencies --ignore-platform-req='ext-*' --ignore-platform-req='lib-*' --no-ansi --no-interaction --no-scripts --no-autoloader --no-plugins
Loading composer repositories with package information
Pattern "php" listed for update matches platform packages, but these cannot be updated by Composer.
Updating dependencies

In RuleSetGenerator.php line 260:
                                                          
  [LogicException]                                        
  Fixed package php 8.1.99 was not added to solver pool.  
                                                          

Exception trace:
  at phar:///opt/containerbase/tools/composer/2.8.2/bin/composer/src/Composer/DependencyResolver/RuleSetGenerator.php:260
 Composer\DependencyResolver\RuleSetGenerator->addRulesForRequest() at phar:///opt/containerbase/tools/composer/2.8.2/bin/composer/src/Composer/DependencyResolver/RuleSetGenerator.php:312
 Composer\DependencyResolver\RuleSetGenerator->getRulesFor() at phar:///opt/containerbase/tools/composer/2.8.2/bin/composer/src/Composer/DependencyResolver/Solver.php:183
 Composer\DependencyResolver\Solver->solve() at phar:///opt/containerbase/tools/composer/2.8.2/bin/composer/src/Composer/Installer.php:508
 Composer\Installer->doUpdate() at phar:///opt/containerbase/tools/composer/2.8.2/bin/composer/src/Composer/Installer.php:298
 Composer\Installer->run() at phar:///opt/containerbase/tools/composer/2.8.2/bin/composer/src/Composer/Command/UpdateCommand.php:281
 Composer\Command\UpdateCommand->execute() at phar:///opt/containerbase/tools/composer/2.8.2/bin/composer/vendor/symfony/console/Command/Command.php:298
 Symfony\Component\Console\Command\Command->run() at phar:///opt/containerbase/tools/composer/2.8.2/bin/composer/vendor/symfony/console/Application.php:1040
 Symfony\Component\Console\Application->doRunCommand() at phar:///opt/containerbase/tools/composer/2.8.2/bin/composer/vendor/symfony/console/Application.php:301
 Symfony\Component\Console\Application->doRun() at phar:///opt/containerbase/tools/composer/2.8.2/bin/composer/src/Composer/Console/Application.php:396
 Composer\Console\Application->doRun() at phar:///opt/containerbase/tools/composer/2.8.2/bin/composer/vendor/symfony/console/Application.php:171
 Symfony\Component\Console\Application->run() at phar:///opt/containerbase/tools/composer/2.8.2/bin/composer/src/Composer/Console/Application.php:136
 Composer\Console\Application->run() at phar:///opt/containerbase/tools/composer/2.8.2/bin/composer/bin/composer:93
 require() at /opt/containerbase/tools/composer/2.8.2/bin/composer:29

update [--with WITH] [--prefer-source] [--prefer-dist] [--prefer-install PREFER-INSTALL] [--dry-run] [--dev] [--no-dev] [--lock] [--no-install] [--no-audit] [--audit-format AUDIT-FORMAT] [--no-autoloader] [--no-suggest] [--no-progress] [-w|--with-dependencies] [-W|--with-all-dependencies] [-v|vv|vvv|--verbose] [-o|--optimize-autoloader] [-a|--classmap-authoritative] [--apcu-autoloader] [--apcu-autoloader-prefix APCU-AUTOLOADER-PREFIX] [--ignore-platform-req IGNORE-PLATFORM-REQ] [--ignore-platform-reqs] [--prefer-stable] [--prefer-lowest] [-m|--minimal-changes] [--patch-only] [-i|--interactive] [--root-reqs] [--bump-after-update [BUMP-AFTER-UPDATE]] [--] [<packages>...]


@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ca7c63c to 2bf2c6e Compare August 8, 2024 13:11
@renovate renovate bot changed the title Update dependency php to ~8.1.0 || ~8.2.0 || ~8.3.0 Update all non-major dependencies Aug 8, 2024
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 015612a to c32bc41 Compare August 23, 2024 04:17
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from f96b52f to b643924 Compare August 31, 2024 03:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from 03ecac2 to 4a845a6 Compare September 10, 2024 22:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from b07d39d to 139d385 Compare September 19, 2024 12:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 139d385 to 747bb93 Compare October 8, 2024 21:42
| datasource  | package                                       | from   | to     |
| ----------- | --------------------------------------------- | ------ | ------ |
| github-tags | laminas/laminas-ci-matrix-action              | 1.27.0 | 1.27.2 |
| github-tags | laminas/laminas-continuous-integration-action | 1.40.0 | 1.40.1 |
| github-tags | containerbase/php-prebuild                    | 8.2.25 | 8.3.13 |
| packagist   | phpunit/phpunit                               | 9.6.20 | 9.6.21 |
| packagist   | squizlabs/php_codesniffer                     | 3.10.2 | 3.11.1 |
| packagist   | vimeo/psalm                                   | 5.26.1 | 5.26.1 |
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants