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 drupal/coder from 8.3.18 to 8.3.23 #471

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

Conversation

violinist-bot
Copy link

If you have a high test coverage index, and your tests for this pull request are passing, it should be both safe and recommended to merge this update.

Updated packages

Some times an update also needs new or updated dependencies to be installed. Even if this branch is for updating one dependency, it might contain other installs or updates. All of the updates in this branch can be found here:

  • symfony/deprecation-contracts: v3.4.0 (updated from v3.3.0)
  • symfony/polyfill-ctype: v1.29.0 (updated from v1.27.0)
  • symfony/yaml: v6.4.3 (updated from v6.3.0)
  • drupal/coder: 8.3.23 (updated from 8.3.18)
  • phpstan/phpdoc-parser: 1.25.0 (updated from 1.20.4)
  • sirbrillig/phpcs-variable-analysis: v2.11.17 (updated from v2.11.16)
  • slevomat/coding-standard: 8.14.1 (updated from 8.12.1)
  • squizlabs/php_codesniffer: 3.8.1 (updated from 3.7.2)

Release notes

Here are the release notes for all versions released between your current running version, and the version this PR updates the package to.

List of release notes

Changed files

Here is a list of changed files between the version you use, and the version this pull request updates to:

List of changed files
  .github/workflows/testing.yml
  coder_sniffer/Drupal/Sniffs/Arrays/ArraySniff.php
  coder_sniffer/Drupal/Sniffs/Classes/ClassDeclarationSniff.php
  coder_sniffer/Drupal/Sniffs/Classes/ClassFileNameSniff.php
  coder_sniffer/Drupal/Sniffs/Classes/UseGlobalClassSniff.php
  coder_sniffer/Drupal/Sniffs/Commenting/ClassCommentSniff.php
  coder_sniffer/Drupal/Sniffs/Commenting/DocCommentSniff.php
  coder_sniffer/Drupal/Sniffs/Commenting/FileCommentSniff.php
  coder_sniffer/Drupal/Sniffs/Commenting/FunctionCommentSniff.php
  coder_sniffer/Drupal/Sniffs/Commenting/InlineCommentSniff.php
  coder_sniffer/Drupal/Sniffs/Commenting/InlineVariableCommentSniff.php
  coder_sniffer/Drupal/Sniffs/Commenting/VariableCommentSniff.php
  coder_sniffer/Drupal/Sniffs/InfoFiles/ClassFilesSniff.php
  coder_sniffer/Drupal/Sniffs/Methods/MethodDeclarationSniff.php
  coder_sniffer/Drupal/Sniffs/Scope/MethodScopeSniff.php
  coder_sniffer/Drupal/Sniffs/Semantics/ConstantNameSniff.php
  coder_sniffer/Drupal/ruleset.xml
  composer.json
  tests/Drupal/Arrays/ArrayUnitTest.inc
  tests/Drupal/Arrays/ArrayUnitTest.inc.fixed
  tests/Drupal/Classes/ClassCreateInstanceUnitTest.inc.fixed
  tests/Drupal/Classes/FullyQualifiedNamespaceUnitTest.inc.fixed
  tests/Drupal/Classes/UnusedUseStatementUnitTest.inc.fixed
  tests/Drupal/Classes/UseGlobalClassUnitTest.inc
  tests/Drupal/Classes/UseGlobalClassUnitTest.inc.fixed
  tests/Drupal/Commenting/FileCommentUnitTest.13.inc
  tests/Drupal/Commenting/FileCommentUnitTest.13.inc.fixed
  tests/Drupal/Commenting/FileCommentUnitTest.php
  tests/Drupal/Commenting/FunctionCommentUnitTest.inc
  tests/Drupal/Commenting/FunctionCommentUnitTest.inc.fixed
  tests/Drupal/Commenting/FunctionCommentUnitTest.php
  tests/Drupal/Commenting/VariableCommentUnitTest.inc
  tests/Drupal/Commenting/VariableCommentUnitTest.inc.fixed
  tests/Drupal/Semantics/ConstantNameUnitTest.php
  tests/Drupal/Semantics/FunctionTUnitTest.inc
  tests/Drupal/Semantics/FunctionTUnitTest.php
  tests/Drupal/Semantics/constant_test.install
  tests/Drupal/Semantics/constant_test.module
  tests/Drupal/bad/BadUnitTest.php
  tests/Drupal/bad/bad.module
  tests/Drupal/bad/bad.php
  tests/Drupal/bad/bad.php.fixed
  tests/Drupal/bad/bad_crlf.inc
  tests/Drupal/bad/bad_crlf.inc.fixed
  tests/Drupal/good/good.module
  tests/Drupal/good/good.php
  tests/DrupalPractice/InfoFiles/description_empty.info.yml
  tests/DrupalPractice/InfoFiles/description_missing.info.yml

Changelog

Here is a list of changes between the version you use, and the version this pull request updates to:

  • 1a1613d8 test(php): Enable PHP 8.3 testing
  • eb31ae91 feat(DeclareStrictTypes): Add Slevomat sniff for declare strict_types (#3407995)
  • 0f95abc3 feat(FunctionComment): Docblock is not required for __constuct() methods (#3400560)
  • ba6e6230 fix(VariableComment): Allow intersection types in @var comment (#3392423)
  • c3f8e282 test(github): Add Drupal core regression testing (#3374864)
  • 0b7f9af1 feat(Array): Allow array definition lines up to 120 characters for better readability (#3185082)
  • 7a35274f feat(enums): Add support for enums (#3283741 by chfoidl, claudiu.cristea, pfrenssen)
  • a0b76c6c Revert "feat(FunctionT): Allow passing constants to t() (#3326197 by Murz)"
  • e79554be fix(ConstantName): Fix constant name detection with define() calls (#3369978 by jonathan1055)
  • 88055e40 style(FunctionT): Fix coding standard spacing in test (#3326197)
  • 1c4a0921 feat(FunctionT): Allow passing constants to t() (#3326197 by Murz)
  • e4e2e227 fix(FunctionComment): Fix regression in 8.3.19 for variadic function parameters (#3365993)
  • bae4c1f5 test(github): Remove phpstan install workaround for removed PHP 7.1 (#203)
  • 8a4b9e06 test(phpunit): PHPunit 7 is unused
  • 9a152b41 feat(ConstName): Support const keyword in constant name prefix detection (#3358592)
  • a40711dd feat(AlphabeticallySortedUses): Add sniff to check and fix use statement order (#3310013)
  • 5a1779e6 fix(FunctionComment): Fix support for PHP 8 intersection types (#3303625)
  • 6689a211 fix(DocComment): Fix undefined string index on short comments (#3307937)
  • e4e05ca7 fix(UseGlobalClass): Fix false positive with closure use statements (#3217297)
  • 0f9e1819 tests(InfoFiles): Fix CRLF line endings in tests (#3323964)
  • f2df52c5 feat(VariableComment): Allow more complex PHPStan type annotations (#3355543)

This is an automated pull request from Violinist: Continuously and automatically monitor and update your composer dependencies. Have ideas on how to improve this message? All violinist messages are open-source, and can be improved here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant