Skip to content

Bump the major-updates group across 1 directory with 7 updates #474

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 5, 2025

Bumps the major-updates group with 6 updates in the / directory:

Package From To
inertiajs/inertia-laravel 1.3.2 2.0.2
laravel/passport 12.4.2 13.0.0
nwidart/laravel-modules 11.1.10 12.0.3
owen-it/laravel-auditing 13.7.2 14.0.0
tpetry/laravel-postgresql-enhanced 2.4.1 3.0.0
phpunit/phpunit 11.5.18 12.1.4

Updates inertiajs/inertia-laravel from 1.3.2 to 2.0.2

Release notes

Sourced from inertiajs/inertia-laravel's releases.

v2.0.2

What's Changed

New Contributors

Full Changelog: inertiajs/inertia-laravel@v2.0.1...v2.0.2

v2.0.1

  • Allow Laravel 12.x.

Full Changelog: inertiajs/inertia-laravel@v2.0.0...v2.0.1

v2.0.0

twitter-card

  • Add support for Inertia.js v2.0.0
  • Add Inertia::defer() to support deferred props
  • Add Inertia::merge() to support merging props on client
  • Add Inertia::always() for props that should always be included (#627)
  • Add Inertia::clearHistory() and Inertia::encryptHistory() methods, encryption config, and encryption middleware
  • Deprecated Inertia::lazy() in favor of Inertia::optional()
  • Drop support for Laravel 8 and 9 (#629)
Changelog

Sourced from inertiajs/inertia-laravel's changelog.

v2.0.2 - 2025-04-10

What's Changed

New Contributors

Full Changelog: inertiajs/inertia-laravel@v2.0.1...v2.0.2

v2.0.1 - 2025-02-18

  • Allow Laravel 12.x.

Full Changelog: inertiajs/inertia-laravel@v2.0.0...v2.0.1

v2.0.0

  • Add support for Inertia.js v2.0.0
  • Add Inertia::defer() to support deferred props
  • Add Inertia::merge() to support merging props on client
  • Add Inertia::always() for props that should always be included (#627)
  • Add Inertia::clearHistory() and Inertia::encryptHistory() methods, encryption config, and encryption middleware
  • Deprecated Inertia::lazy() in favor of Inertia::optional()
  • Drop support for Laravel 8 and 9 (#629)

v1.2.0 - 2024-05-17

  • Make commands lazy (#601)
  • Add persistent properties (#621)
  • Exclude except props from partial reloads (#622)

v1.1.0 - 2024-05-16

... (truncated)

Commits

Updates laravel/framework from 11.44.6 to 11.44.7

Commits

Updates laravel/passport from 12.4.2 to 13.0.0

Release notes

Sourced from laravel/passport's releases.

v13.0.0

Changelog

Sourced from laravel/passport's changelog.

v13.0.0 - 2025-04-25

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

Updates nwidart/laravel-modules from 11.1.10 to 12.0.3

Release notes

Sourced from nwidart/laravel-modules's releases.

v12.0.3

What's Changed

Full Changelog: nWidart/laravel-modules@v12.0.2...v12.0.3

v12.0.2

What's Changed

Full Changelog: nWidart/laravel-modules@v12.0.1...v12.0.2

v12.0.1

What's Changed

New Contributors

Full Changelog: nWidart/laravel-modules@v12.0.0...v12.0.1

v12.0.0

What's Changed

Full Changelog: nWidart/laravel-modules@v11.1.10...v12.0.0

Commits
  • ffad5c7 Merge pull request #2059 from nWidart/hot-fixes-for-mismatch-variables
  • b80e2c2 fix: update config path and component namespace in module make command tests
  • a34c4e8 fix: correct config path and component namespace in provider.stub
  • e25033c fix: remove duplicated adjacent segments in namespace configuration
  • 71ac71c Merge pull request #2053 from solomon-ochepa/feature/module-config-override
  • ca06cde Merge branch 'master' into feature/module-config-override
  • 4c09752 Merge pull request #2056 from nWidart/correct-component-path-in-service-provider
  • c51a407 fix: update component namespace generation in module make command tests
  • 83b1406 Merge pull request #2055 from nWidart/config-needs-path-adjustment-for-layout...
  • 945960c Merge pull request #2052 from solomon-ochepa/patch-61
  • Additional commits viewable in compare view

Updates owen-it/laravel-auditing from 13.7.2 to 14.0.0

Release notes

Sourced from owen-it/laravel-auditing's releases.

v14.0.0

This package now supports PHP >= 8.2 and Laravel >= 11. Deprecated code has been removed.

Breaking Change

If you are using custom auditing, you will almost definitely need to change Event::dispatch(AuditCustom::class, [$yourModel]); to Event::dispatch(new AuditCustom($yourModel));

What's Changed

New Contributors

Full Changelog: owen-it/laravel-auditing@v13.7.0...v14.0.0

Commits

Updates tpetry/laravel-postgresql-enhanced from 2.4.1 to 3.0.0

Changelog

Sourced from tpetry/laravel-postgresql-enhanced's changelog.

[3.0.0] - 2025-04-23

Backward Incompatible Changes

  • Changed the trigger definition when() method to whenCondition() to solve conflict with Laravel 12.10.0
  • Changed dependencies to depend on laravel/framework instead of distinct illuminate/* packages
Commits
  • 816f36f docs: release 3.0.0
  • 8a0b3b6 chore: depend on any laravel/framework but keep illuminate/database constrain...
  • 362de7b chore: change dependencies to use laravel/framework because of unexported fun...
  • 40c9bb1 fix: TriggerDefinition::when broke because of a new conflict with Laravel's C...
  • See full diff in compare view

Updates phpunit/phpunit from 11.5.18 to 12.1.4

Release notes

Sourced from phpunit/phpunit's releases.

PHPUnit 12.1.4

Added

  • displayDetailsOnAllIssues attribute on the <phpunit> element of the XML configuration file and --display-all-issues CLI option for controlling whether PHPUnit should display details on all issues that are triggered (default: false)
  • failOnAllIssues attribute on the <phpunit> element of the XML configuration file and --fail-on-all-issues CLI option for controlling whether PHPUnit should fail on all issues that are triggered (default: false)

Changed

  • #5956: Improved handling of deprecated E_STRICT constant

Fixed

  • #6192: Positive %a and %A matches are not ignored from diff when EXPECTF fails

How to install or update PHPUnit

PHPUnit 12.1.3

Changed

  • When gathering the telemetry information that each event has, the real size of memory allocated from the operating system is no longer used as this is grown by PHP's memory manager in chunks that are so large that small(er) increases in peak memory usage cannot be seen
  • The peak memory usage returned by memory_get_peak_usage() is now reset immediately before the Test\Prepared event is emitted using memory_reset_peak_usage() so that (memory usage at Test\Finished - memory usage at Test\Prepared) is a better approximation of the memory usage of the test
  • The string representation of Telemetry\Info now uses peak memory usage instead of memory usage (this affects --log-events-verbose-text)

Fixed

  • #6173: Output from error_log() is not displayed when test fails
  • A "Before Test Method Errored" event is no longer emitted when a test is skipped in a "before test" method

How to install or update PHPUnit

PHPUnit 12.1.2

Fixed

  • #6104: Reverted change introduced in PHPUnit 12.1.1

How to install or update PHPUnit

PHPUnit 12.1.1

Fixed

  • #6104: Test with dependencies and data provider fails
  • #6174: willReturnMap() fails with nullable parameters when their default is null and no argument is passed for them

How to install or update PHPUnit

PHPUnit 12.1.0

Added

  • #6118: expectErrorLog() for expecting error_log() output
  • #6126: Attribute #[WithEnvironmentVariable] for setting an environment variable for the duration of a test

... (truncated)

Changelog

Sourced from phpunit/phpunit's changelog.

[12.1.4] - 2025-05-02

Added

  • displayDetailsOnAllIssues attribute on the <phpunit> element of the XML configuration file and --display-all-issues CLI option for controlling whether PHPUnit should display details on all issues that are triggered (default: false)
  • failOnAllIssues attribute on the <phpunit> element of the XML configuration file and --fail-on-all-issues CLI option for controlling whether PHPUnit should fail on all issues that are triggered (default: false)

Changed

  • #5956: Improved handling of deprecated E_STRICT constant

Fixed

  • #6192: Positive %a and %A matches are not ignored from diff when EXPECTF fails

[12.1.3] - 2025-04-22

Changed

  • When gathering the telemetry information that each event has, the real size of memory allocated from the operating system is no longer used as this is grown by PHP's memory manager in chunks that are so large that small(er) increases in peak memory usage cannot be seen
  • The peak memory usage returned by memory_get_peak_usage() is now reset immediately before the Test\Prepared event is emitted using memory_reset_peak_usage() so that (memory usage at Test\Finished - memory usage at Test\Prepared) is a better approximation of the memory usage of the test
  • The string representation of Telemetry\Info now uses peak memory usage instead of memory usage (this affects --log-events-verbose-text)

Fixed

  • #6173: Output from error_log() is not displayed when test fails
  • A "Before Test Method Errored" event is no longer emitted when a test is skipped in a "before test" method

[12.1.2] - 2025-04-08

Fixed

  • #6104: Reverted change introduced in PHPUnit 12.1.1

[12.1.1] - 2025-04-08

Fixed

  • #6104: Test with dependencies and data provider fails
  • #6174: willReturnMap() fails with nullable parameters when their default is null and no argument is passed for them

[12.1.0] - 2025-04-04

Added

  • #6118: expectErrorLog() for expecting error_log() output
  • #6126: Attribute #[WithEnvironmentVariable] for setting an environment variable for the duration of a test
  • The AfterTestMethodCalled, AfterTestMethodErrored, AfterTestMethodFinished, BeforeTestMethodCalled, BeforeTestMethodErrored, BeforeTestMethodFinished, PostConditionCalled, PostConditionErrored, PostConditionFinished, PreConditionCalled, PreConditionErrored, and PreConditionFinished event value objects now have test() method that returns a value object representing the test method for which the hook method was called

Changed

... (truncated)

Commits

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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels May 5, 2025
@dependabot dependabot bot force-pushed the dependabot/composer/main/major-updates-e4e0da6257 branch 2 times, most recently from 8604cbe to ae5457e Compare May 19, 2025 08:13
@dependabot dependabot bot force-pushed the dependabot/composer/main/major-updates-e4e0da6257 branch from ae5457e to f686546 Compare June 2, 2025 09:17
Bumps the major-updates group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [inertiajs/inertia-laravel](https://github.com/inertiajs/inertia-laravel) | `1.3.2` | `2.0.2` |
| [laravel/passport](https://github.com/laravel/passport) | `12.4.2` | `13.0.0` |
| [nwidart/laravel-modules](https://github.com/nWidart/laravel-modules) | `11.1.10` | `12.0.3` |
| [owen-it/laravel-auditing](https://github.com/owen-it/laravel-auditing) | `13.7.2` | `14.0.0` |
| [tpetry/laravel-postgresql-enhanced](https://github.com/tpetry/laravel-postgresql-enhanced) | `2.4.1` | `3.0.0` |
| [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) | `11.5.18` | `12.1.4` |



Updates `inertiajs/inertia-laravel` from 1.3.2 to 2.0.2
- [Release notes](https://github.com/inertiajs/inertia-laravel/releases)
- [Changelog](https://github.com/inertiajs/inertia-laravel/blob/2.x/CHANGELOG.md)
- [Commits](inertiajs/inertia-laravel@v1.3.2...v2.0.2)

Updates `laravel/framework` from 11.44.6 to 11.44.7
- [Release notes](https://github.com/laravel/framework/releases)
- [Changelog](https://github.com/laravel/framework/blob/12.x/CHANGELOG.md)
- [Commits](laravel/framework@v11.44.6...v11.44.7)

Updates `laravel/passport` from 12.4.2 to 13.0.0
- [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.0)

Updates `nwidart/laravel-modules` from 11.1.10 to 12.0.3
- [Release notes](https://github.com/nWidart/laravel-modules/releases)
- [Changelog](https://github.com/nWidart/laravel-modules/blob/master/CHANGELOG.md)
- [Commits](nWidart/laravel-modules@v11.1.10...v12.0.3)

Updates `owen-it/laravel-auditing` from 13.7.2 to 14.0.0
- [Release notes](https://github.com/owen-it/laravel-auditing/releases)
- [Changelog](https://github.com/owen-it/laravel-auditing/blob/master/CHANGELOG.md)
- [Commits](owen-it/laravel-auditing@v13.7.2...v14.0.0)

Updates `tpetry/laravel-postgresql-enhanced` from 2.4.1 to 3.0.0
- [Changelog](https://github.com/tpetry/laravel-postgresql-enhanced/blob/master/CHANGELOG.md)
- [Commits](tpetry/laravel-postgresql-enhanced@2.4.1...3.0.0)

Updates `phpunit/phpunit` from 11.5.18 to 12.1.4
- [Release notes](https://github.com/sebastianbergmann/phpunit/releases)
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/12.1.4/ChangeLog-12.1.md)
- [Commits](sebastianbergmann/phpunit@11.5.18...12.1.4)

---
updated-dependencies:
- dependency-name: inertiajs/inertia-laravel
  dependency-version: 2.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-updates
- dependency-name: laravel/framework
  dependency-version: 11.44.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: major-updates
- dependency-name: laravel/passport
  dependency-version: 13.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-updates
- dependency-name: nwidart/laravel-modules
  dependency-version: 12.0.3
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-updates
- dependency-name: owen-it/laravel-auditing
  dependency-version: 14.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-updates
- dependency-name: tpetry/laravel-postgresql-enhanced
  dependency-version: 3.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: major-updates
- dependency-name: phpunit/phpunit
  dependency-version: 12.1.4
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: major-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/composer/main/major-updates-e4e0da6257 branch from f686546 to 898b800 Compare June 9, 2025 08:54
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.

0 participants