From f563640ef164236b41762617454dc9986e7d7b85 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 21:49:53 +0000 Subject: [PATCH 01/14] Bump crazy-max/ghaction-github-pages from 4.0.0 to 4.1.0 Bumps [crazy-max/ghaction-github-pages](https://github.com/crazy-max/ghaction-github-pages) from 4.0.0 to 4.1.0. - [Release notes](https://github.com/crazy-max/ghaction-github-pages/releases) - [Commits](https://github.com/crazy-max/ghaction-github-pages/compare/v4.0.0...v4.1.0) --- updated-dependencies: - dependency-name: crazy-max/ghaction-github-pages dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index f4dff185..a9ed469e 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -45,7 +45,7 @@ jobs: run: npm run build - name: Deploy to GitHub Pages - uses: crazy-max/ghaction-github-pages@v4.0.0 + uses: crazy-max/ghaction-github-pages@v4.1.0 with: target_branch: gh-pages build_dir: docs/.vuepress/dist From 7065ef88460770f58a44b11af3647a568ffe3aa0 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Sun, 24 Nov 2024 21:44:18 +0300 Subject: [PATCH 02/14] =?UTF-8?q?Whoops=20=F0=9F=98=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/getting-started/installation.md | 1 - 1 file changed, 1 deletion(-) diff --git a/docs/getting-started/installation.md b/docs/getting-started/installation.md index ac6c364b..4ec4730e 100644 --- a/docs/getting-started/installation.md +++ b/docs/getting-started/installation.md @@ -9,7 +9,6 @@ composer require dragon-code/laravel-deploy-operations ``` If necessary, you can publish the configuration file by calling the console command: -В случае необходимости ```bash php artisan vendor:publish --tag=config --provider="DragonCode\LaravelDeployOperations\ServiceProvider" From 97f3bfac66e1a6ebfd12df60af3f4daa16b04805 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Nov 2024 21:47:18 +0000 Subject: [PATCH 03/14] Bump TheDragonCode/codestyler from 4 to 5 Bumps [TheDragonCode/codestyler](https://github.com/thedragoncode/codestyler) from 4 to 5. - [Release notes](https://github.com/thedragoncode/codestyler/releases) - [Commits](https://github.com/thedragoncode/codestyler/compare/v4...v5) --- updated-dependencies: - dependency-name: TheDragonCode/codestyler dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/code-style.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/code-style.yml b/.github/workflows/code-style.yml index a148c440..d50e010b 100644 --- a/.github/workflows/code-style.yml +++ b/.github/workflows/code-style.yml @@ -20,7 +20,7 @@ jobs: echo "name=${NAME}" >> $GITHUB_OUTPUT - name: ${{ steps.detect.outputs.name }} the code style - uses: TheDragonCode/codestyler@v4 + uses: TheDragonCode/codestyler@v5 with: github_token: ${{ secrets.COMPOSER_TOKEN }} fix: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }} From 72b7deb273a8bde08ce55f5cc84b238a6cb97588 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Thu, 2 Jan 2025 17:48:29 +0300 Subject: [PATCH 04/14] Create license.yml --- .github/workflows/license.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/license.yml diff --git a/.github/workflows/license.yml b/.github/workflows/license.yml new file mode 100644 index 00000000..963dfddc --- /dev/null +++ b/.github/workflows/license.yml @@ -0,0 +1,24 @@ +name: Update license + +on: + schedule: + - cron: '0 3 1 1 *' + workflow_dispatch: + +jobs: + update: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 + - uses: FantasticFiasco/action-update-license-year@v3 + with: + token: ${{ secrets.GITHUB_TOKEN }} + commitTitle: 'The year in the LICENSE file has been updated' + prTitle: 'The year in the LICENSE file has been updated' + - name: Merge PR + if: steps.license.outputs.pullRequestNumber != '' + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: gh pr merge --merge --delete-branch ${{ steps.license.outputs.pullRequestNumber }} From e997ef2acea3e1eacc7f03043acbfd0f590da9ae Mon Sep 17 00:00:00 2001 From: github-actions Date: Thu, 2 Jan 2025 14:48:52 +0000 Subject: [PATCH 05/14] The year in the LICENSE file has been updated --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index cb5856d7..0dc685f4 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 Andrey Helldar +Copyright (c) 2024-2025 Andrey Helldar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal From 8ea5f76737cc4da6e236b6d74a2d7ccdd6c23175 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Thu, 2 Jan 2025 18:04:20 +0300 Subject: [PATCH 06/14] Update LICENSE --- LICENSE | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENSE b/LICENSE index 0dc685f4..c4c90b77 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024-2025 Andrey Helldar +Copyright (c) 2020-2025 Andrey Helldar Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal @@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE -SOFTWARE. \ No newline at end of file +SOFTWARE. From 725c4c0719e2f2d6d947c1001c0d93d73e7075be Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Thu, 2 Jan 2025 18:06:10 +0300 Subject: [PATCH 07/14] Update license.yml --- .github/workflows/license.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/license.yml b/.github/workflows/license.yml index 963dfddc..f00193d6 100644 --- a/.github/workflows/license.yml +++ b/.github/workflows/license.yml @@ -13,6 +13,7 @@ jobs: with: fetch-depth: 0 - uses: FantasticFiasco/action-update-license-year@v3 + id: license with: token: ${{ secrets.GITHUB_TOKEN }} commitTitle: 'The year in the LICENSE file has been updated' From 05e1d8ba0c3e9ed2a34597903359c47ec5a80064 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Thu, 2 Jan 2025 18:16:55 +0300 Subject: [PATCH 08/14] Update license.yml --- .github/workflows/license.yml | 19 ++----------------- 1 file changed, 2 insertions(+), 17 deletions(-) diff --git a/.github/workflows/license.yml b/.github/workflows/license.yml index f00193d6..4dd62b4f 100644 --- a/.github/workflows/license.yml +++ b/.github/workflows/license.yml @@ -6,20 +6,5 @@ on: workflow_dispatch: jobs: - update: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - fetch-depth: 0 - - uses: FantasticFiasco/action-update-license-year@v3 - id: license - with: - token: ${{ secrets.GITHUB_TOKEN }} - commitTitle: 'The year in the LICENSE file has been updated' - prTitle: 'The year in the LICENSE file has been updated' - - name: Merge PR - if: steps.license.outputs.pullRequestNumber != '' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: gh pr merge --merge --delete-branch ${{ steps.license.outputs.pullRequestNumber }} + Update: + uses: TheDragonCode/.github/.github/workflows/license.yml@main From dd48c93784a2bf550fe0120606228c1ad2dee064 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Thu, 2 Jan 2025 18:32:59 +0300 Subject: [PATCH 09/14] Update files --- .github/workflows/license.yml | 2 +- composer.json | 6 +----- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/license.yml b/.github/workflows/license.yml index 4dd62b4f..4abdb6f6 100644 --- a/.github/workflows/license.yml +++ b/.github/workflows/license.yml @@ -7,4 +7,4 @@ on: jobs: Update: - uses: TheDragonCode/.github/.github/workflows/license.yml@main + uses: TheDragonCode/.github/.github/workflows/license.yml@main \ No newline at end of file diff --git a/composer.json b/composer.json index 27912957..00d1167d 100644 --- a/composer.json +++ b/composer.json @@ -35,10 +35,6 @@ { "type": "yoomoney", "url": "https://yoomoney.ru/to/410012608840929" - }, - { - "type": "donationalerts", - "url": "https://www.donationalerts.com/r/dragon_code" } ], "require": { @@ -98,4 +94,4 @@ ] } } -} +} \ No newline at end of file From 2eb40555ad84f9ac9cb5daf2ec698b5d93c9e74a Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Thu, 6 Feb 2025 00:09:04 +0300 Subject: [PATCH 10/14] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 51a2b1d8..17f16891 100644 --- a/README.md +++ b/README.md @@ -81,15 +81,15 @@ An [upgrade](https://deploy-operations.dragon-code.pro/upgrade-guide/) section i This package is licensed under the [MIT License](LICENSE). -[badge_build]: https://img.shields.io/github/actions/workflow/status/TheDragonCode/laravel-actions/phpunit.yml?style=flat-square +[badge_build]: https://img.shields.io/github/actions/workflow/status/TheDragonCode/laravel-deploy-operations/phpunit.yml?style=flat-square [badge_downloads]: https://img.shields.io/packagist/dt/dragon-code/laravel-actions.svg?style=flat-square [badge_license]: https://img.shields.io/packagist/l/dragon-code/laravel-deploy-operations.svg?style=flat-square -[badge_stable]: https://img.shields.io/github/v/release/TheDragonCode/laravel-actions?label=packagist&style=flat-square +[badge_stable]: https://img.shields.io/github/v/release/TheDragonCode/laravel-deploy-operations?label=packagist&style=flat-square -[link_build]: https://github.com/TheDragonCode/laravel-actions/actions +[link_build]: https://github.com/TheDragonCode/laravel-deploy-operations/actions [link_license]: LICENSE From 48326f9f76757509be8a3496441410e35e919827 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Thu, 6 Feb 2025 18:04:29 +0300 Subject: [PATCH 11/14] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 17f16891..35c2e5e7 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,7 @@ This package is licensed under the [MIT License](LICENSE). [badge_build]: https://img.shields.io/github/actions/workflow/status/TheDragonCode/laravel-deploy-operations/phpunit.yml?style=flat-square -[badge_downloads]: https://img.shields.io/packagist/dt/dragon-code/laravel-actions.svg?style=flat-square +[badge_downloads]: https://img.shields.io/packagist/dt/dragon-code/laravel-deploy-operations.svg?style=flat-square [badge_license]: https://img.shields.io/packagist/l/dragon-code/laravel-deploy-operations.svg?style=flat-square From ee22519dc0df5aa814022c0b6e2c26f4cf807802 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Mon, 24 Feb 2025 02:05:45 +0300 Subject: [PATCH 12/14] Added Laravel 12 support --- composer.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/composer.json b/composer.json index 00d1167d..346cacc1 100644 --- a/composer.json +++ b/composer.json @@ -42,18 +42,18 @@ "composer-runtime-api": "^2.2", "dragon-code/simple-dto": "^2.5.1", "dragon-code/support": "^6.6", - "illuminate/console": "^10.0 || ^11.0", - "illuminate/container": "^10.0 || ^11.0", - "illuminate/database": "^10.0 || ^11.0", - "illuminate/support": "^10.0 || ^11.0", + "illuminate/console": "^10.0 || ^11.0 || ^12.0", + "illuminate/container": "^10.0 || ^11.0 || ^12.0", + "illuminate/database": "^10.0 || ^11.0 || ^12.0", + "illuminate/support": "^10.0 || ^11.0 || ^12.0", "laravel/prompts": ">=0.1", "symfony/console": "^6.0 || ^7.0" }, "require-dev": { "mockery/mockery": "^1.3.1", "nesbot/carbon": "^2.62.1 || ^3.0", - "orchestra/testbench": "^8.0 || ^9.0", - "phpunit/phpunit": "^10.0", + "orchestra/testbench": "^8.0 || ^9.0 || ^10.0", + "phpunit/phpunit": "^10.0 || ^11.0 || ^12.0", "ramsey/uuid": "^4.0" }, "conflict": { @@ -94,4 +94,4 @@ ] } } -} \ No newline at end of file +} From 843aedcd2840c033b11de2d6a2d97b236aedecb7 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Mon, 24 Feb 2025 02:06:40 +0300 Subject: [PATCH 13/14] Update phpunit.yml --- .github/workflows/phpunit.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index c65daa95..eebfc179 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -9,8 +9,11 @@ jobs: strategy: fail-fast: true matrix: - php: [ "8.2", "8.3" ] - laravel: [ "10.0", "11.0" ] + php: [ "8.2", "8.3", "8.4" ] + laravel: [ "10.0", "11.0", "12.0" ] + exclude: + - laravel: "10.0" + php: "8.4" name: PHP ${{ matrix.php }}, Laravel ${{ matrix.laravel }} @@ -32,5 +35,8 @@ jobs: if: matrix.laravel == '10.0' run: composer require doctrine/dbal + - name: Update PHPUnit Configuration + run: vendor/bin/phpunit --migrate-configuration + - name: Execute tests run: sudo vendor/bin/phpunit From 6e1a99225972cc1c0e26e8366bdc22b5c2d67b2e Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Mon, 24 Feb 2025 18:37:51 +0300 Subject: [PATCH 14/14] Update phpunit.yml --- .github/workflows/phpunit.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index eebfc179..658c16e8 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -35,8 +35,5 @@ jobs: if: matrix.laravel == '10.0' run: composer require doctrine/dbal - - name: Update PHPUnit Configuration - run: vendor/bin/phpunit --migrate-configuration - - name: Execute tests run: sudo vendor/bin/phpunit