From c051f5cea4e0cb4110af1800a718837e7dc2495b Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 29 Aug 2023 15:31:49 +0000 Subject: [PATCH 01/19] Update CHANGELOG --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bcf895c..98510bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Release Notes -## [Unreleased](https://github.com/laravel/tinker/compare/v2.8.1...2.x) +## [Unreleased](https://github.com/laravel/tinker/compare/v2.8.2...2.x) + +## [v2.8.2](https://github.com/laravel/tinker/compare/v2.8.1...v2.8.2) - 2023-08-15 + +- [2.x] Adds type checking by [@nunomaduro](https://github.com/nunomaduro) in https://github.com/laravel/tinker/pull/160 +- [2.x] Remove unused `orchestra/testbench` deps by [@crynobone](https://github.com/crynobone) in https://github.com/laravel/tinker/pull/166 ## [v2.8.1](https://github.com/laravel/tinker/compare/v2.8.0...v2.8.1) - 2023-02-15 From 08a68807426e1fb4b14bb307c702fed8a40a5668 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Thu, 21 Sep 2023 17:09:27 +0200 Subject: [PATCH 02/19] PHP 8.3 (#167) --- .github/workflows/tests.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index d1d2e26..ab3aa04 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -16,7 +16,7 @@ jobs: strategy: fail-fast: true matrix: - php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2] + php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2, 8.3] laravel: [6, 7, 8, 9, 10] exclude: - php: 7.2 @@ -45,6 +45,14 @@ jobs: laravel: 7 - php: 8.2 laravel: 8 + - php: 8.3 + laravel: 6 + - php: 8.3 + laravel: 7 + - php: 8.3 + laravel: 8 + - php: 8.3 + laravel: 9 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} From 708f9e68884e3c2d9e86ccbab56d4bf2f636b958 Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Tue, 17 Oct 2023 14:52:22 +0100 Subject: [PATCH 03/19] Uses `actions/checkout@v4` --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ab3aa04..ef7ae21 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -58,7 +58,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 From a3c3a4ae6c1e1ff9a7b9abb8c411850b156ac101 Mon Sep 17 00:00:00 2001 From: Justin Hileman Date: Mon, 1 Jan 2024 10:45:55 -0500 Subject: [PATCH 04/19] Update PsySH dependency to v0.12 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 4d8363b..a0bd510 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0", "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0", "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", - "psy/psysh": "^0.10.4|^0.11.1", + "psy/psysh": "^0.10.4|^0.11.1|^0.12.0", "symfony/var-dumper": "^4.3.4|^5.0|^6.0" }, "require-dev": { From 502e0fe3f0415d06d5db1f83a472f0f3b754bafe Mon Sep 17 00:00:00 2001 From: Nuno Maduro Date: Thu, 4 Jan 2024 16:10:04 +0000 Subject: [PATCH 05/19] [2.x] Merging develop (#171) * Update composer.json * [develop] Adds Symfony 7 support (#169) * Adds Symfony 7 support * Adjusts workflow * Adjusts composer * Uses only "^0.12" * Uses `0.11.1` for PHP 7.2 --------- Co-authored-by: Dries Vints --- .github/workflows/tests.yml | 12 +++++++++++- composer.json | 15 ++++++--------- 2 files changed, 17 insertions(+), 10 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ef7ae21..3c5b716 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,7 +17,7 @@ jobs: fail-fast: true matrix: php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2, 8.3] - laravel: [6, 7, 8, 9, 10] + laravel: [6, 7, 8, 9, 10, 11] exclude: - php: 7.2 laravel: 8 @@ -25,20 +25,30 @@ jobs: laravel: 9 - php: 7.2 laravel: 10 + - php: 7.2 + laravel: 11 - php: 7.3 laravel: 9 - php: 7.3 laravel: 10 + - php: 7.3 + laravel: 11 - php: 7.4 laravel: 9 - php: 7.4 laravel: 10 + - php: 7.4 + laravel: 11 - php: '8.0' laravel: 10 + - php: '8.0' + laravel: 11 - php: 8.1 laravel: 6 - php: 8.1 laravel: 7 + - php: 8.1 + laravel: 11 - php: 8.2 laravel: 6 - php: 8.2 diff --git a/composer.json b/composer.json index a0bd510..827dd1d 100644 --- a/composer.json +++ b/composer.json @@ -11,11 +11,11 @@ ], "require": { "php": "^7.2.5|^8.0", - "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0", - "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", - "psy/psysh": "^0.10.4|^0.11.1|^0.12.0", - "symfony/var-dumper": "^4.3.4|^5.0|^6.0" + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "psy/psysh": "^0.11.1|^0.12.0", + "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0" }, "require-dev": { "mockery/mockery": "~1.3.3|^1.4.2", @@ -23,7 +23,7 @@ "phpunit/phpunit": "^8.5.8|^9.3.3" }, "suggest": { - "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0)." + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)." }, "autoload": { "psr-4": { @@ -38,9 +38,6 @@ } }, "extra": { - "branch-alias": { - "dev-master": "2.x-dev" - }, "laravel": { "providers": [ "Laravel\\Tinker\\TinkerServiceProvider" From fd07064083e61d37a119836a5b796a0e79c0a6fb Mon Sep 17 00:00:00 2001 From: driesvints Date: Tue, 9 Jan 2024 18:14:00 +0000 Subject: [PATCH 06/19] Update CHANGELOG --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 98510bb..af054f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Release Notes -## [Unreleased](https://github.com/laravel/tinker/compare/v2.8.2...2.x) +## [Unreleased](https://github.com/laravel/tinker/compare/v2.9.0...2.x) + +## [v2.9.0](https://github.com/laravel/tinker/compare/v2.8.2...v2.9.0) - 2024-01-04 + +* Update PsySH dependency to v0.12 by [@bobthecow](https://github.com/bobthecow) in https://github.com/laravel/tinker/pull/170 +* [2.x] Merging develop by [@nunomaduro](https://github.com/nunomaduro) in https://github.com/laravel/tinker/pull/171 ## [v2.8.2](https://github.com/laravel/tinker/compare/v2.8.1...v2.8.2) - 2023-08-15 From 1205fb2a68d860f8b5476b9648b36daf4541ff01 Mon Sep 17 00:00:00 2001 From: Julius Kiekbusch Date: Thu, 25 Jan 2024 12:09:51 +0100 Subject: [PATCH 07/19] Use actions/checkout@v4 (#172) --- .github/workflows/static-analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 453d8a6..efea805 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -21,7 +21,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup PHP uses: shivammathur/setup-php@v2 From 8faaf8fa2733bfc398c1e725e97420ff169b9d39 Mon Sep 17 00:00:00 2001 From: Julius Kiekbusch Date: Fri, 26 Jan 2024 12:40:32 +0100 Subject: [PATCH 08/19] Use new static analysis workflow (#173) --- .github/workflows/static-analysis.yml | 28 +-------------------------- 1 file changed, 1 insertion(+), 27 deletions(-) diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index efea805..368c185 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -12,30 +12,4 @@ permissions: jobs: tests: - runs-on: ubuntu-22.04 - - strategy: - fail-fast: true - - name: Static Analysis - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Setup PHP - uses: shivammathur/setup-php@v2 - with: - php-version: 8.2 - tools: composer:v2 - coverage: none - - - name: Install dependencies - uses: nick-fields/retry@v2 - with: - timeout_minutes: 5 - max_attempts: 5 - command: composer update --prefer-stable --prefer-dist --no-interaction --no-progress - - - name: Execute type checking - run: vendor/bin/phpstan + uses: laravel/.github/.github/workflows/static-analysis.yml@main From 290601070f1e26f0ebc3f51f41e10d1064a7d93c Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Mon, 29 Jan 2024 11:15:42 +0100 Subject: [PATCH 09/19] Update 1_Bug_report.yml --- .github/ISSUE_TEMPLATE/1_Bug_report.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/1_Bug_report.yml b/.github/ISSUE_TEMPLATE/1_Bug_report.yml index 0ace60e..2235310 100644 --- a/.github/ISSUE_TEMPLATE/1_Bug_report.yml +++ b/.github/ISSUE_TEMPLATE/1_Bug_report.yml @@ -1,9 +1,9 @@ name: Bug Report -description: "Report a general library issue." +description: "Report something that's broken." body: - type: markdown attributes: - value: "Before submitting your report, [please ensure your Laravel version is still supported](https://laravel.com/docs/releases#support-policy)." + value: "Please read [our full contribution guide](https://laravel.com/docs/contributions#bug-reports) before submitting bug reports. If you notice improper DocBlock, PHPStan, or IDE warnings while using Laravel, do not create a GitHub issue. Instead, please submit a pull request to fix the problem." - type: input attributes: label: Tinker Version From 30e6548fb32fa45cf23c2da2b48b59f04bcede67 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Mon, 29 Jan 2024 11:15:53 +0100 Subject: [PATCH 10/19] Update 1_Bug_report.yml --- .github/ISSUE_TEMPLATE/1_Bug_report.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/1_Bug_report.yml b/.github/ISSUE_TEMPLATE/1_Bug_report.yml index 2235310..d5458a1 100644 --- a/.github/ISSUE_TEMPLATE/1_Bug_report.yml +++ b/.github/ISSUE_TEMPLATE/1_Bug_report.yml @@ -14,7 +14,7 @@ body: - type: input attributes: label: Laravel Version - description: Provide the Laravel version that you are using. + description: Provide the Laravel version that you are using. [Please ensure it is still supported.](https://laravel.com/docs/releases#support-policy) placeholder: 10.4.1 validations: required: true From 3ea079523e516d8a8048b18cb8cf6a758e1bcbb9 Mon Sep 17 00:00:00 2001 From: Julius Kiekbusch Date: Fri, 2 Aug 2024 10:24:02 +0200 Subject: [PATCH 11/19] Replace dead link in Security Policy (#180) --- .github/SECURITY.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/SECURITY.md b/.github/SECURITY.md index dd673d4..800b8af 100644 --- a/.github/SECURITY.md +++ b/.github/SECURITY.md @@ -15,7 +15,7 @@ If you discover a security vulnerability within Laravel, please send an email to ``` -----BEGIN PGP PUBLIC KEY BLOCK----- Version: OpenPGP v2.0.8 -Comment: https://sela.io/pgp/ +Comment: Report Security Vulnerabilities to taylor@laravel.com xsFNBFugFSQBEACxEKhIY9IoJzcouVTIYKJfWFGvwFgbRjQWBiH3QdHId5vCrbWo s2l+4Rv03gMG+yHLJ3rWElnNdRaNdQv59+lShrZF7Bvu7Zvc0mMNmFOM/mQ/K2Lt From 0b5013b581b1d5a69fe81cf566fa06de663be538 Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 3 Sep 2024 11:47:23 +0200 Subject: [PATCH 12/19] Update config.yml --- .github/ISSUE_TEMPLATE/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 6253bb2..4ce1fe0 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,5 +1,8 @@ blank_issues_enabled: false contact_links: + - name: Feature request + url: https://github.com/laravel/tinker/pulls + about: 'For ideas or feature requests, send in a pull request' - name: Support Questions & Other url: https://laravel.com/docs/contributions#support-questions about: 'This repository is only for reporting bugs. If you have a question or need help using the library, click:' From a3e5213b95d4f396fc6e58b9f2af37aa7b6259fa Mon Sep 17 00:00:00 2001 From: Dries Vints Date: Tue, 3 Sep 2024 11:47:32 +0200 Subject: [PATCH 13/19] Delete .github/ISSUE_TEMPLATE/2_Feature_request.md --- .github/ISSUE_TEMPLATE/2_Feature_request.md | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/2_Feature_request.md diff --git a/.github/ISSUE_TEMPLATE/2_Feature_request.md b/.github/ISSUE_TEMPLATE/2_Feature_request.md deleted file mode 100644 index e530d76..0000000 --- a/.github/ISSUE_TEMPLATE/2_Feature_request.md +++ /dev/null @@ -1,4 +0,0 @@ ---- -name: "Feature request" -about: 'For ideas or feature requests, please make a pull request, or open an issue' ---- From ba4d51eb56de7711b3a37d63aa0643e99a339ae5 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Mon, 23 Sep 2024 21:32:56 +0800 Subject: [PATCH 14/19] [2.x] Supports PHP 8.4 (#182) Signed-off-by: Mior Muhammad Zaki --- .github/workflows/tests.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 3c5b716..979dbbc 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,6 +18,9 @@ jobs: matrix: php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2, 8.3] laravel: [6, 7, 8, 9, 10, 11] + include: + - php: 8.4 + laravel: 11 exclude: - php: 7.2 laravel: 8 @@ -81,8 +84,7 @@ jobs: - name: Install dependencies run: | - composer require "illuminate/contracts=^${{ matrix.laravel }}" --no-update - composer update --prefer-dist --no-interaction --no-progress + composer update --prefer-dist --no-interaction --no-progress --with="illuminate/contracts=^${{ matrix.laravel }}" - name: Execute tests run: vendor/bin/phpunit --verbose From 8aa2522b0a98ca4b7f17604eb96e9e2cac7d8ed8 Mon Sep 17 00:00:00 2001 From: taylorotwell Date: Tue, 24 Sep 2024 15:53:40 +0000 Subject: [PATCH 15/19] Update CHANGELOG --- CHANGELOG.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af054f4..64e2a8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Release Notes -## [Unreleased](https://github.com/laravel/tinker/compare/v2.9.0...2.x) +## [Unreleased](https://github.com/laravel/tinker/compare/v2.10.0...2.x) + +## [v2.10.0](https://github.com/laravel/tinker/compare/v2.9.0...v2.10.0) - 2024-09-23 + +* Use actions/checkout[@v4](https://github.com/v4) by [@Jubeki](https://github.com/Jubeki) in https://github.com/laravel/tinker/pull/172 +* Use new static analysis workflow by [@Jubeki](https://github.com/Jubeki) in https://github.com/laravel/tinker/pull/173 +* Replace dead link in Security Policy by [@Jubeki](https://github.com/Jubeki) in https://github.com/laravel/tinker/pull/180 +* [2.x] Supports PHP 8.4 by [@crynobone](https://github.com/crynobone) in https://github.com/laravel/tinker/pull/182 ## [v2.9.0](https://github.com/laravel/tinker/compare/v2.8.2...v2.9.0) - 2024-01-04 From 9f5dde017e33a3e4800a6cdc363ac23b60065be3 Mon Sep 17 00:00:00 2001 From: Rafael Milewski Date: Fri, 27 Sep 2024 22:57:57 +0800 Subject: [PATCH 16/19] Update logo to support dark/light theme (#183) * Update logo.svg * Update README.md --- README.md | 2 +- art/logo.svg | 22 +++++++++++++++++++++- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 40284ac..1ed1a49 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -

Logo Laravel Tinker

+

Logo Laravel Tinker

Build Status diff --git a/art/logo.svg b/art/logo.svg index 5e2fa9b..6825e83 100644 --- a/art/logo.svg +++ b/art/logo.svg @@ -1 +1,21 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + From 22177cc71807d38f2810c6204d8f7183d88a57d3 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Mon, 27 Jan 2025 22:24:01 +0800 Subject: [PATCH 17/19] [2.x] Supports Laravel 12 (#185) * Supports Laravel 12 Signed-off-by: Mior Muhammad Zaki * wip Signed-off-by: Mior Muhammad Zaki * Update phpunit.xml.dist --------- Signed-off-by: Mior Muhammad Zaki --- .github/workflows/tests.yml | 14 ++++++++++++-- composer.json | 10 +++++----- phpunit.xml.dist | 2 +- 3 files changed, 18 insertions(+), 8 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 979dbbc..94eb45f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,7 +17,7 @@ jobs: fail-fast: true matrix: php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2, 8.3] - laravel: [6, 7, 8, 9, 10, 11] + laravel: [6, 7, 8, 9, 10, 11, 12] include: - php: 8.4 laravel: 11 @@ -30,28 +30,38 @@ jobs: laravel: 10 - php: 7.2 laravel: 11 + - php: 7.2 + laravel: 12 - php: 7.3 laravel: 9 - php: 7.3 laravel: 10 - php: 7.3 laravel: 11 + - php: 7.3 + laravel: 12 - php: 7.4 laravel: 9 - php: 7.4 laravel: 10 - php: 7.4 laravel: 11 + - php: 7.4 + laravel: 12 - php: '8.0' laravel: 10 - php: '8.0' laravel: 11 + - php: '8.0' + laravel: 12 - php: 8.1 laravel: 6 - php: 8.1 laravel: 7 - php: 8.1 laravel: 11 + - php: 8.1 + laravel: 12 - php: 8.2 laravel: 6 - php: 8.2 @@ -87,4 +97,4 @@ jobs: composer update --prefer-dist --no-interaction --no-progress --with="illuminate/contracts=^${{ matrix.laravel }}" - name: Execute tests - run: vendor/bin/phpunit --verbose + run: vendor/bin/phpunit diff --git a/composer.json b/composer.json index 827dd1d..4d7b5b9 100644 --- a/composer.json +++ b/composer.json @@ -11,19 +11,19 @@ ], "require": { "php": "^7.2.5|^8.0", - "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", - "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", "psy/psysh": "^0.11.1|^0.12.0", "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0" }, "require-dev": { "mockery/mockery": "~1.3.3|^1.4.2", "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^8.5.8|^9.3.3" + "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0" }, "suggest": { - "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)." + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)." }, "autoload": { "psr-4": { diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 367feb0..fa94d8c 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -12,7 +12,7 @@ > - ./tests/ + ./tests/ From a86ecfebd0727883336570342e48751620bd56cf Mon Sep 17 00:00:00 2001 From: taylorotwell <463230+taylorotwell@users.noreply.github.com> Date: Tue, 28 Jan 2025 16:02:33 +0000 Subject: [PATCH 18/19] Update CHANGELOG --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 64e2a8f..1cb753e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Release Notes -## [Unreleased](https://github.com/laravel/tinker/compare/v2.10.0...2.x) +## [Unreleased](https://github.com/laravel/tinker/compare/v2.10.1...2.x) + +## [v2.10.1](https://github.com/laravel/tinker/compare/v2.10.0...v2.10.1) - 2025-01-27 + +* Update logo to support dark/light theme by [@milewski](https://github.com/milewski) in https://github.com/laravel/tinker/pull/183 +* [2.x] Supports Laravel 12 by [@crynobone](https://github.com/crynobone) in https://github.com/laravel/tinker/pull/185 ## [v2.10.0](https://github.com/laravel/tinker/compare/v2.9.0...v2.10.0) - 2024-09-23 From 102bfc19b79817022e9fb1d3dd235d43d42f1954 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Wed, 12 Feb 2025 09:36:47 +0800 Subject: [PATCH 19/19] chore: Update `update-changelog.yml` --- .github/workflows/update-changelog.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/update-changelog.yml b/.github/workflows/update-changelog.yml index 1625bda..ebda620 100644 --- a/.github/workflows/update-changelog.yml +++ b/.github/workflows/update-changelog.yml @@ -4,6 +4,10 @@ on: release: types: [released] +permissions: {} + jobs: update: + permissions: + contents: write uses: laravel/.github/.github/workflows/update-changelog.yml@main