Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 25, 2025

Bumps laravel/passport from 12.4.2 to 13.0.6.

Release notes

Sourced from laravel/passport's releases.

v13.0.6

v13.0.5

v13.0.4

v13.0.3

v13.0.2

v13.0.1

v13.0.0

... (truncated)

Changelog

Sourced from laravel/passport's changelog.

v13.0.6 - 2025-07-10

v13.0.5 - 2025-06-12

v13.0.4 - 2025-06-06

v13.0.3 - 2025-06-02

v13.0.2 - 2025-05-27

v13.0.1 - 2025-05-07

v13.0.0 - 2025-04-25

... (truncated)

Upgrade guide

Sourced from laravel/passport's upgrade guide.

Upgrade Guide

General Notes

Upgrading To 13.0 From 12.x

Minimum PHP Version

PR: laravel/passport#1734, laravel/passport#1783

PHP 8.2 is now the minimum required version.

Minimum Laravel Version

PR: laravel/passport#1757, laravel/passport#1783, laravel/passport#1797

Laravel 11.35 is now the minimum required version.

OAuth2 Server

PR: laravel/passport#1734

The league/oauth2-server Composer package which is utilized internally by Passport has been updated to 9.0, which adds additional types to method signatures. To ensure your application is compatible, you should review this package's complete changelog.

Headless

PR: laravel/passport#1771

Passport's views were not rendering properly for several release cycles. Passport is now a headless OAuth2 library. If you would like a frontend implementation of Laravel Passport's OAuth features that are already completed for you, you should use an application starter kit.

All the authorization view's rendering logic may be customized using the appropriate methods available via the Laravel\Passport\Passport class. Typically, you should call these methods within the boot method of your application's App\Providers\AppServiceProvider class. Passport will take care of defining the routes that return these views:

public function boot(): void
{
    Passport::authorizationView('auth.oauth.authorize');
}

Identify Clients by UUIDs

PR: laravel/passport#1764

By default, Passport now uses UUIDs to identify clients. You may keep using incremental integer IDs by setting Passport::$clientUuids to false within the boot method of your application's App\Providers\AppServiceProvider class:

public function boot(): void
{
    Passport::$clientUuids = false;
}

As a consequence of this change, the 'passport.client_uuids' configuration property has been removed, as well as the Passport::clientUuids() and Passport::setClientUuids() methods.

... (truncated)

Commits
  • c5bf6c5 Fix broken token relation when auth identifier is not PK (#1835)
  • 951fe86 Update CHANGELOG
  • 9a3b47b [13.x] Fix Exception Caused by Missing AccessToken Attributes (#1829)
  • 524a4ff Update CHANGELOG
  • cc80677 [13.x] Document changes to oauth_clients table in upgrade guide (#1823)
  • 3a3401f [13.x] Fix skipping authorization consent when no scopes are requested (#1825)
  • 988779d Update CHANGELOG
  • d9a994d Fix mock in 'actingAsClient‘ method (#1822)
  • db70cb1 Update CHANGELOG
  • 01aaf7d fix: possible php error if redirect column is an empty string (#1821)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [laravel/passport](https://github.com/laravel/passport) from 12.4.2 to 13.0.6.
- [Release notes](https://github.com/laravel/passport/releases)
- [Changelog](https://github.com/laravel/passport/blob/13.x/CHANGELOG.md)
- [Upgrade guide](https://github.com/laravel/passport/blob/13.x/UPGRADE.md)
- [Commits](laravel/passport@v12.4.2...v13.0.6)

---
updated-dependencies:
- dependency-name: laravel/passport
  dependency-version: 13.0.6
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Jul 25, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Aug 8, 2025

Superseded by #4251.

@dependabot dependabot bot closed this Aug 8, 2025
@dependabot dependabot bot deleted the dependabot/composer/laravel/passport-13.0.6 branch August 8, 2025 18:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file php Pull requests that update Php code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant