From 73a8040e3f19acce27468c99441b915308b57218 Mon Sep 17 00:00:00 2001 From: roxblnfk Date: Wed, 11 Dec 2024 23:06:33 +0400 Subject: [PATCH] Disable CS check for this branch; update changelog --- .gitattributes | 1 - .github/workflows/main.yml | 53 -------------------------------------- CHANGELOG.md | 4 +++ 3 files changed, 4 insertions(+), 54 deletions(-) diff --git a/.gitattributes b/.gitattributes index 796e4561f..603714d86 100644 --- a/.gitattributes +++ b/.gitattributes @@ -1,4 +1,3 @@ -/.github export-ignore /.* export-ignore /builder export-ignore /tests export-ignore diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c0c728a29..caeb830f0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -117,59 +117,6 @@ jobs: vendor/bin/psalm --no-cache --shepherd --stats --output-format=checkstyle --php-version=${{ matrix.php }} vendor/bin/rector --dry-run --clear-cache - - coding-standards: - name: Coding Standards - runs-on: ${{ matrix.os }} - - strategy: - fail-fast: false - matrix: - php: ['8.3'] # Note: This workflow requires only the LATEST version of PHP - os: [ubuntu-latest] - - steps: - # General Steps - - name: Set Git To Use LF - run: | - git config --global core.autocrlf false - git config --global core.eol lf - - name: Checkout - uses: actions/checkout@v3 - - - name: Configure environment - run: | - export COMPOSER_ROOT_VERSION=$(/usr/bin/jq --null-input --raw-output 'first(inputs["extra"]["branch-alias"])[]' composer.json) - echo COMPOSER_ROOT_VERSION=$COMPOSER_ROOT_VERSION >> $GITHUB_ENV - - # Install PHP Dependencies - - name: Setup PHP ${{ matrix.php }} - uses: shivammathur/setup-php@v2 - with: - php-version: ${{ matrix.php }} - - name: Validate Composer - run: composer validate - - name: Get Composer Cache Directory - # Docs: - id: composer-cache - run: echo "::set-output name=dir::$(composer config cache-files-dir)" - - name: Restore Composer Cache - uses: actions/cache@v2 - with: - path: ${{ steps.composer-cache.outputs.dir }} - key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }} - restore-keys: ${{ runner.os }}-${{ matrix.php }}-composer- - - name: Install Dependencies - uses: nick-invision/retry@v2 - with: - timeout_minutes: 5 - max_attempts: 5 - command: composer update --prefer-dist --no-interaction --no-progress - - # Execution - - name: Check Coding Standards - run: vendor/bin/php-cs-fixer fix --config=.php-cs-fixer.dist.php -vvv --dry-run --using-cache=no - # # Execute unit tests on all valid PHP versions. # diff --git a/CHANGELOG.md b/CHANGELOG.md index d5c061204..316d6e06a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## Unreleased + +- Definitions of nullable parameters have been fixed according to PHP 8.4 deprecations. + ## 3.14.7 - 2024-11-25 - **Bug Fixes**