From 028fa9d67dc8714f1ed9a3029b30583abd94fcb4 Mon Sep 17 00:00:00 2001 From: Shuvro Roy Date: Fri, 15 Dec 2023 22:00:14 +0600 Subject: [PATCH 1/6] chore: support php 8.3 --- .github/workflows/tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 6ce3a9d..ddadb82 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -9,7 +9,7 @@ jobs: strategy: fail-fast: true matrix: - php: [7.3, 7.4, 8.0, 8.1, 8.2] + php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3] elastic: [7.11.0] stability: [prefer-lowest, prefer-stable] exclude: @@ -17,6 +17,8 @@ jobs: stability: prefer-lowest - php: 8.2 stability: prefer-lowest + - php: 8.3 + stability: prefer-lowest name: PHP ${{ matrix.php }} - ${{ matrix.stability }} steps: From d55f1c0a3e3defe1a02245713d31fa81dc04e58b Mon Sep 17 00:00:00 2001 From: Shuvro Roy Date: Fri, 5 Apr 2024 18:57:27 +0600 Subject: [PATCH 2/6] chore: added support laravel 11 --- composer.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/composer.json b/composer.json index f603e71..5bdc56b 100644 --- a/composer.json +++ b/composer.json @@ -20,14 +20,14 @@ "ext-json": "*", "elasticsearch/elasticsearch": "^7.11", "guzzlehttp/psr7": "^1.7|^2.0", - "illuminate/contracts": "^7.0|^8.0|^9.0|^10.0", - "illuminate/support": "^7.0|^8.0|^9.0|^10.0", + "illuminate/contracts": "^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0", "psr/http-message": "^1.0" }, "require-dev": { "mockery/mockery": "^1.4.3", - "orchestra/testbench": "^6.5|^7.0|^8.0", - "phpunit/phpunit": "^9.4" + "orchestra/testbench": "^6.5|^7.0|^8.0|^9.0", + "phpunit/phpunit": "^9.4|^10.5" }, "suggest": { "aws/aws-sdk-php": "Required to connect to an Elasticsearch host on AWS (^3.80)" From f3bd2a726280b8d3c7cea7b17ee043ac1e41c2de Mon Sep 17 00:00:00 2001 From: Shuvro Roy Date: Fri, 5 Apr 2024 19:16:48 +0600 Subject: [PATCH 3/6] chore: remove phpunit v10 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 5bdc56b..1619d6e 100644 --- a/composer.json +++ b/composer.json @@ -27,7 +27,7 @@ "require-dev": { "mockery/mockery": "^1.4.3", "orchestra/testbench": "^6.5|^7.0|^8.0|^9.0", - "phpunit/phpunit": "^9.4|^10.5" + "phpunit/phpunit": "^9.4" }, "suggest": { "aws/aws-sdk-php": "Required to connect to an Elasticsearch host on AWS (^3.80)" From 15b5a2157d6a126d01a9f6ac4784dfe13376bb54 Mon Sep 17 00:00:00 2001 From: Shuvro Roy Date: Fri, 5 Apr 2024 19:23:17 +0600 Subject: [PATCH 4/6] chore: http-message v2 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 1619d6e..1fbf888 100644 --- a/composer.json +++ b/composer.json @@ -22,7 +22,7 @@ "guzzlehttp/psr7": "^1.7|^2.0", "illuminate/contracts": "^7.0|^8.0|^9.0|^10.0|^11.0", "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0", - "psr/http-message": "^1.0" + "psr/http-message": "^1.0|^2.0" }, "require-dev": { "mockery/mockery": "^1.4.3", From 530e43ce8134f0172905db47a7da0009836d4e6b Mon Sep 17 00:00:00 2001 From: Shuvro Roy Date: Fri, 5 Apr 2024 19:32:13 +0600 Subject: [PATCH 5/6] chore: bump sem version --- .semver | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.semver b/.semver index d15adc4..404d6c7 100644 --- a/.semver +++ b/.semver @@ -1,6 +1,6 @@ --- :major: 11 -:minor: 0 +:minor: 1 :patch: 0 :special: '' :metadata: '' From 90ed85836c263bfa8a2edbfefd5345e09771a070 Mon Sep 17 00:00:00 2001 From: Shuvro Roy Date: Fri, 5 Apr 2024 19:35:56 +0600 Subject: [PATCH 6/6] chore: update changelog md file --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ca8b90..a0eaf79 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 11.1.0 - 13-Jun-2023 + +- support laravel 11.0 & php 8.3 in github action (thanks @shuvroroy) + ## 11.0.0 - 13-Jun-2023 - update namespace and support php 8.2 in github action (thanks @nklmilojevic and @shuvroroy)