Skip to content

Commit 8b774bc

Browse files
committed
fix conflicts
2 parents 089e2c3 + 31da2ae commit 8b774bc

File tree

11 files changed

+59
-25
lines changed

11 files changed

+59
-25
lines changed

.github/ISSUE_TEMPLATE/2_Feature_request.md

Lines changed: 0 additions & 4 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
blank_issues_enabled: false
22
contact_links:
3+
- name: Feature request
4+
url: https://github.com/laravel/passport/pulls
5+
about: 'For ideas or feature requests, send in a pull request'
36
- name: Support Questions & Other
47
url: https://laravel.com/docs/contributions#support-questions
58
about: 'This repository is only for reporting bugs. If you have a question or need help using the library, click:'

.github/workflows/tests.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ jobs:
1616
strategy:
1717
fail-fast: true
1818
matrix:
19-
php: [8.2, 8.3]
20-
laravel: [11]
19+
php: [8.2, 8.3, 8.4]
20+
laravel: [11, 12]
2121

2222
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}
2323

@@ -36,8 +36,7 @@ jobs:
3636

3737
- name: Install dependencies
3838
run: |
39-
composer require "illuminate/contracts=^${{ matrix.laravel }}" --no-update
40-
composer update --prefer-dist --no-interaction --no-progress
39+
composer update --prefer-dist --no-interaction --no-progress --with="illuminate/contracts=^${{ matrix.laravel }}"
4140
4241
- name: Execute tests
43-
run: vendor/bin/phpunit
42+
run: vendor/bin/phpunit ${{ matrix.laravel >= 10 && '--display-deprecations' || '' }}

.github/workflows/update-changelog.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ on:
44
release:
55
types: [released]
66

7+
permissions: {}
8+
79
jobs:
810
update:
11+
permissions:
12+
contents: write
913
uses: laravel/.github/.github/workflows/update-changelog.yml@main

.styleci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
php:
22
preset: laravel
3+
enabled:
4+
- nullable_type_declarations
35
js: true
46
css: true

CHANGELOG.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,23 @@
11
# Release Notes
22

3-
## [Unreleased](https://github.com/laravel/passport/compare/v12.3.0...12.x)
3+
## [Unreleased](https://github.com/laravel/passport/compare/v12.4.2...12.x)
4+
5+
## [v12.4.2](https://github.com/laravel/passport/compare/v12.4.1...v12.4.2) - 2025-02-12
6+
7+
* [12.x] Update property annotation for $userId to match constructor type by [@ukkok](https://github.com/ukkok) in https://github.com/laravel/passport/pull/1805
8+
9+
## [v12.4.1](https://github.com/laravel/passport/compare/v12.4.0...v12.4.1) - 2025-01-28
10+
11+
* Supports Laravel 12 by [@crynobone](https://github.com/crynobone) in https://github.com/laravel/passport/pull/1803
12+
13+
## [v12.4.0](https://github.com/laravel/passport/compare/v12.3.1...v12.4.0) - 2025-01-13
14+
15+
* [12.x] Supports PHP 8.4 by [@crynobone](https://github.com/crynobone) in https://github.com/laravel/passport/pull/1799
16+
17+
## [v12.3.1](https://github.com/laravel/passport/compare/v12.3.0...v12.3.1) - 2024-11-11
18+
19+
* Update logo to support dark/light theme by [@milewski](https://github.com/milewski) in https://github.com/laravel/passport/pull/1787
20+
* Fix repeated word "the" in upgrade guide by [@caendesilva](https://github.com/caendesilva) in https://github.com/laravel/passport/pull/1798
421

522
## [v12.3.0](https://github.com/laravel/passport/compare/v12.2.1...v12.3.0) - 2024-08-05
623

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<p align="center"><img src="/art/logo.svg" alt="Logo Laravel Passport"></p>
1+
<p align="center"><img width="368" height="60" src="/art/logo.svg" alt="Logo Laravel Passport"></p>
22

33
<p align="center">
44
<a href="https://github.com/laravel/passport/actions"><img src="https://github.com/laravel/passport/workflows/tests/badge.svg" alt="Build Status"></a>

UPGRADE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ The minimum Laravel version is now v6.0 and the minimum PHP version is now 7.2.
253253

254254
PR: https://github.com/laravel/passport/pull/1065
255255

256-
Passport now supports public clients and PCKE. To leverage this feature, you should update the the `secret` column of the `oauth_clients` table to be `nullable`:
256+
Passport now supports public clients and PCKE. To leverage this feature, you should update the `secret` column of the `oauth_clients` table to be `nullable`:
257257

258258
Schema::table('oauth_clients', function (Blueprint $table) {
259259
$table->string('secret', 100)->nullable()->change();

art/logo.svg

Lines changed: 14 additions & 1 deletion
Loading

composer.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@
1818
"ext-json": "*",
1919
"ext-openssl": "*",
2020
"firebase/php-jwt": "^6.4",
21-
"illuminate/auth": "^11.14",
22-
"illuminate/console": "^11.14",
23-
"illuminate/container": "^11.14",
24-
"illuminate/contracts": "^11.14",
25-
"illuminate/cookie": "^11.14",
26-
"illuminate/database": "^11.14",
27-
"illuminate/encryption": "^11.14",
28-
"illuminate/http": "^11.14",
29-
"illuminate/support": "^11.14",
21+
"illuminate/auth": "^11.14|^12.0",
22+
"illuminate/console": "^11.14|^12.0",
23+
"illuminate/container": "^11.14|^12.0",
24+
"illuminate/contracts": "^11.14|^12.0",
25+
"illuminate/cookie": "^11.14|^12.0",
26+
"illuminate/database": "^11.14|^12.0",
27+
"illuminate/encryption": "^11.14|^12.0",
28+
"illuminate/http": "^11.14|^12.0",
29+
"illuminate/support": "^11.14|^12.0",
3030
"lcobucci/jwt": "^5.0",
3131
"league/oauth2-server": "^9.0",
3232
"nyholm/psr7": "^1.5",
@@ -36,9 +36,9 @@
3636
},
3737
"require-dev": {
3838
"mockery/mockery": "^1.0",
39-
"orchestra/testbench": "^9.0",
39+
"orchestra/testbench": "^9.0|^10.0",
4040
"phpstan/phpstan": "^1.10",
41-
"phpunit/phpunit": "^10.5|^11.0"
41+
"phpunit/phpunit": "^10.5|^11.5"
4242
},
4343
"autoload": {
4444
"psr-4": {

0 commit comments

Comments
 (0)