Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 27, 2025

Bumps the minor-updates group with 19 updates in the / directory:

Package From To
brick/money 0.10.1 0.10.3
datomatic/laravel-enum-helper 2.1.1 2.1.2
dedoc/scramble 0.12.23 0.13.1
inertiajs/inertia-laravel 2.0.3 2.0.10
laravel/jetstream 5.3.7 5.3.8
laravel/octane 2.11.0 2.13.0
laravel/passport 13.0.5 13.2.2
league/csv 9.24.1 9.27.1
league/flysystem-aws-s3-v3 3.29.0 3.30.1
maatwebsite/excel 3.1.64 3.1.67
tightenco/ziggy 2.5.3 2.6.0
tpetry/laravel-postgresql-enhanced 3.0.0 3.4.0
barryvdh/laravel-ide-helper 3.5.5 3.6.0
brianium/paratest 7.10.3 7.14.2
fumeapp/modeltyper 3.3.0 3.4.1
larastan/larastan 3.5.0 3.7.2
laravel/pint 1.24.0 1.25.1
laravel/sail 1.43.1 1.46.0
laravel/telescope 5.10.0 5.14.1

Updates brick/money from 0.10.1 to 0.10.3

Release notes

Sourced from brick/money's releases.

0.10.3

👌 Improvements

0.10.2

New features

  • Add possibility to pass previous exception in CurrencyConversionException (#99 by @​arokettu)
Changelog

Sourced from brick/money's changelog.

0.10.3 - 2025-09-03

👌 Improvements

0.10.2 - 2025-08-05

New features

  • Add possibility to pass previous exception in CurrencyConversionException (#99 by @​arokettu)
Commits
  • b1b0bb6 Add changelog entry
  • 5b88215 Allow brick/math: v0.14
  • 4ee860c Add changelog entry
  • 820720c Merge pull request #99 from sandfoxme/previous-exception
  • 8bedfae Add a way to pass $previous in CurrencyConversionException
  • 43845bf Merge pull request #97 from bendavies/patch-1
  • 87b967a fix: correct example of allocateWithRemainder with correct amounts
  • See full diff in compare view

Updates datomatic/laravel-enum-helper from 2.1.1 to 2.1.2

Release notes

Sourced from datomatic/laravel-enum-helper's releases.

v2.1.2

Changelog

Sourced from datomatic/laravel-enum-helper's changelog.

v2.1.2 - 2025-09-24

Commits
  • c63fd71 fix annotation command
  • 80525d2 fix annotation command
  • 75f4aba Merge pull request #7 from Carnicero90/main
  • 3aa6bd5 wip: avoid writing docblock for enums that dont use LaravelEnumHelper
  • c55f92e Update CHANGELOG
  • See full diff in compare view

Updates dedoc/scramble from 0.12.23 to 0.13.1

Release notes

Sourced from dedoc/scramble's releases.

v0.13.1

What's Changed

Full Changelog: dedoc/scramble@v0.13.0...v0.13.1

v0.13.0

While this release has no breaking changes itself, the resulting OpenAPI document may be more accurate for your specific application, and hence may be considered as the one containing breaking changes. Due to this, I've decided to mark this release as 0.13.x. It means that you'll need to explicitly update the version in composer.json if you rely on ^0.12.0 or earlier versions.

Full type inference

Starting from Laravel 11.x (and especially from 12.x), Laravel comes with great and accurate PHPDoc annotations. With Scramble supporting these types, you'll enjoy focusing more on the app codebase rather than writing type annotations.

use App\Models\Appointment;
Route::get('/appointments', function (Request $request) {
$items = Appointment::query()
->where('status', $request->string('status'))
->get();
return $items;

});

In this case, Scramble can infer the type of $items: it is a collection of appointments, specifically: Illuminate\Database\Eloquent\Collection<int, App\Models\Appointment>!

This gives nice documentation just by analyzing the source, without any additional annotations.

Closure-based routes support

Previously, Scramble only supported controller-based routes. Now, the routes defined using closures also get their share of love and are documented automatically.

Closure-based routes support all the attributes (for manual parameters, headers, responses, etc.) that are supported by controller-based methods.

What's Changed

New Contributors

Full Changelog: dedoc/scramble@v0.12.36...v0.13.0

v0.12.36

What's Changed

... (truncated)

Commits
  • 1cf25c2 Expose more internal type inference related APIs (#1006)
  • 0c4a172 fix closure routes names
  • 57dfa62 Add Request@user method support for better post-installation experience (#1...
  • 304c954 Fixes redundant argument types resolution (#1000)
  • 530fc22 Merge branch '0.12.x'
  • e2741ad [change] Support enum names extension property (#981)
  • edaba4f Fix styling
  • 8e474a0 Restricted attribute format for date_format rule (#983)
  • 67384a3 Fix styling
  • 9054f9f Restricted attribute format for date_format rule (#983)
  • Additional commits viewable in compare view

Updates guzzlehttp/guzzle from 7.9.3 to 7.10.0

Release notes

Sourced from guzzlehttp/guzzle's releases.

Release 7.10.0

Added

  • Support for PHP 8.5

Changed

  • Adjusted guzzlehttp/promises version constraint to ^2.3
  • Adjusted guzzlehttp/psr7 version constraint to ^2.8
Changelog

Sourced from guzzlehttp/guzzle's changelog.

7.10.0 - 2025-08-23

Added

  • Support for PHP 8.5

Changed

  • Adjusted guzzlehttp/promises version constraint to ^2.3
  • Adjusted guzzlehttp/psr7 version constraint to ^2.8
Commits

Updates inertiajs/inertia-laravel from 2.0.3 to 2.0.10

Release notes

Sourced from inertiajs/inertia-laravel's releases.

v2.0.10

What's Changed

Full Changelog: inertiajs/inertia-laravel@v2.0.9...v2.0.10

v2.0.9

What's Changed

Full Changelog: inertiajs/inertia-laravel@v2.0.8...v2.0.9

v2.0.8

What's Changed

Full Changelog: inertiajs/inertia-laravel@v2.0.7...v2.0.8

v2.0.7

What's Changed

Full Changelog: inertiajs/inertia-laravel@v2.0.6...v2.0.7

v2.0.6

What's Changed

New Contributors

Full Changelog: inertiajs/inertia-laravel@v2.0.5...v2.0.6

v2.0.5

What's Changed

New Contributors

Full Changelog: inertiajs/inertia-laravel@v2.0.4...v2.0.5

v2.0.4

What's Changed

... (truncated)

Changelog

Sourced from inertiajs/inertia-laravel's changelog.

v2.0.10 - 2025-09-28

What's Changed

Full Changelog: inertiajs/inertia-laravel@v2.0.9...v2.0.10

v2.0.9 - 2025-09-26

What's Changed

Full Changelog: inertiajs/inertia-laravel@v2.0.8...v2.0.9

v2.0.8 - 2025-09-26

What's Changed

Full Changelog: inertiajs/inertia-laravel@v2.0.7...v2.0.8

v2.0.7 - 2025-09-24

What's Changed

Full Changelog: inertiajs/inertia-laravel@v2.0.6...v2.0.7

v2.0.6 - 2025-08-26

What's Changed

New Contributors

Full Changelog: inertiajs/inertia-laravel@v2.0.5...v2.0.6

v2.0.5 - 2025-08-12

What's Changed

... (truncated)

Commits
  • 07da425 Include scrollProps metadata when prop is requested to reset (#781)
  • 3fad483 Update CHANGELOG
  • 8293195 Merge pull request #780 from inertiajs/scroll-facade-doc-method
  • 84974a6 Update Inertia.php
  • a6cdf5e Update Inertia.php
  • de77c71 Update CHANGELOG
  • e2ab960 More fine-grained control for Inertia::merge() and a new `Inertia::scroll()...
  • 43c44df Update CHANGELOG
  • a08aea5 Added loadDeferredProps() method to AssertableInertia class (#779)
  • 5a9c4e5 Update CHANGELOG
  • Additional commits viewable in compare view

Updates laravel/framework from 12.20.0 to 12.35.1

Release notes

Sourced from laravel/framework's releases.

v12.35.1

v12.35.0

v12.34.0

... (truncated)

Changelog

Sourced from laravel/framework's changelog.

v12.35.1 - 2025-10-23

v12.35.0 - 2025-10-21

v12.34.0 - 2025-10-14

... (truncated)

Commits

Updates laravel/jetstream from 5.3.7 to 5.3.8

Release notes

Sourced from laravel/jetstream's releases.

v5.3.8

Changelog

Sourced from laravel/jetstream's changelog.

v5.3.8 - 2025-07-18

Commits

Updates laravel/octane from 2.11.0 to 2.13.0

Release notes

Sourced from laravel/octane's releases.

v2.13.0

v2.12.3

v2.12.2

v2.12.1

v2.12.0

Changelog

Sourced from laravel/octane's changelog.

v2.13.0 - 2025-10-13

v2.12.3 - 2025-09-23

v2.12.2 - 2025-09-07

v2.12.1 - 2025-07-25

v2.12.0 - 2025-07-18

Commits

Updates laravel/passport from 13.0.5 to 13.2.2

Release notes

Sourced from laravel/passport's releases.

v13.2.2

v13.2.1

v13.2.0

v13.1.0

v13.0.6

Changelog

Sourced from laravel/passport's changelog.

v13.2.2 - 2025-10-10

v13.2.1 - 2025-09-15

v13.2.0 - 2025-08-19

@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update Php code labels Oct 27, 2025
Bumps the minor-updates group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [brick/money](https://github.com/brick/money) | `0.10.1` | `0.10.3` |
| [datomatic/laravel-enum-helper](https://github.com/datomatic/laravel-enum-helper) | `2.1.1` | `2.1.2` |
| [dedoc/scramble](https://github.com/dedoc/scramble) | `0.12.23` | `0.13.1` |
| [inertiajs/inertia-laravel](https://github.com/inertiajs/inertia-laravel) | `2.0.3` | `2.0.10` |
| [laravel/jetstream](https://github.com/laravel/jetstream) | `5.3.7` | `5.3.8` |
| [laravel/octane](https://github.com/laravel/octane) | `2.11.0` | `2.13.0` |
| [laravel/passport](https://github.com/laravel/passport) | `13.0.5` | `13.2.2` |
| [league/csv](https://github.com/thephpleague/csv) | `9.24.1` | `9.27.1` |
| [league/flysystem-aws-s3-v3](https://github.com/thephpleague/flysystem-aws-s3-v3) | `3.29.0` | `3.30.1` |
| [maatwebsite/excel](https://github.com/SpartnerNL/Laravel-Excel) | `3.1.64` | `3.1.67` |
| [tightenco/ziggy](https://github.com/tighten/ziggy) | `2.5.3` | `2.6.0` |
| [tpetry/laravel-postgresql-enhanced](https://github.com/tpetry/laravel-postgresql-enhanced) | `3.0.0` | `3.4.0` |
| [barryvdh/laravel-ide-helper](https://github.com/barryvdh/laravel-ide-helper) | `3.5.5` | `3.6.0` |
| [brianium/paratest](https://github.com/paratestphp/paratest) | `7.10.3` | `7.14.2` |
| [fumeapp/modeltyper](https://github.com/fumeapp/modeltyper) | `3.3.0` | `3.4.1` |
| [larastan/larastan](https://github.com/larastan/larastan) | `3.5.0` | `3.7.2` |
| [laravel/pint](https://github.com/laravel/pint) | `1.24.0` | `1.25.1` |
| [laravel/sail](https://github.com/laravel/sail) | `1.43.1` | `1.46.0` |
| [laravel/telescope](https://github.com/laravel/telescope) | `5.10.0` | `5.14.1` |



Updates `brick/money` from 0.10.1 to 0.10.3
- [Release notes](https://github.com/brick/money/releases)
- [Changelog](https://github.com/brick/money/blob/master/CHANGELOG.md)
- [Commits](brick/money@0.10.1...0.10.3)

Updates `datomatic/laravel-enum-helper` from 2.1.1 to 2.1.2
- [Release notes](https://github.com/datomatic/laravel-enum-helper/releases)
- [Changelog](https://github.com/datomatic/laravel-enum-helper/blob/main/CHANGELOG.md)
- [Commits](datomatic/laravel-enum-helper@v2.1.1...v2.1.2)

Updates `dedoc/scramble` from 0.12.23 to 0.13.1
- [Release notes](https://github.com/dedoc/scramble/releases)
- [Commits](dedoc/scramble@v0.12.23...v0.13.1)

Updates `guzzlehttp/guzzle` from 7.9.3 to 7.10.0
- [Release notes](https://github.com/guzzle/guzzle/releases)
- [Changelog](https://github.com/guzzle/guzzle/blob/7.10/CHANGELOG.md)
- [Commits](guzzle/guzzle@7.9.3...7.10.0)

Updates `inertiajs/inertia-laravel` from 2.0.3 to 2.0.10
- [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@v2.0.3...v2.0.10)

Updates `laravel/framework` from 12.20.0 to 12.35.1
- [Release notes](https://github.com/laravel/framework/releases)
- [Changelog](https://github.com/laravel/framework/blob/12.x/CHANGELOG.md)
- [Commits](laravel/framework@v12.20.0...v12.35.1)

Updates `laravel/jetstream` from 5.3.7 to 5.3.8
- [Release notes](https://github.com/laravel/jetstream/releases)
- [Changelog](https://github.com/laravel/jetstream/blob/5.x/CHANGELOG.md)
- [Commits](laravel/jetstream@v5.3.7...v5.3.8)

Updates `laravel/octane` from 2.11.0 to 2.13.0
- [Release notes](https://github.com/laravel/octane/releases)
- [Changelog](https://github.com/laravel/octane/blob/2.x/CHANGELOG.md)
- [Commits](laravel/octane@v2.11.0...v2.13.0)

Updates `laravel/passport` from 13.0.5 to 13.2.2
- [Release notes](https://github.com/laravel/passport/releases)
- [Changelog](https://github.com/laravel/passport/blob/13.x/CHANGELOG.md)
- [Commits](laravel/passport@v13.0.5...v13.2.2)

Updates `league/csv` from 9.24.1 to 9.27.1
- [Release notes](https://github.com/thephpleague/csv/releases)
- [Changelog](https://github.com/thephpleague/csv/blob/master/CHANGELOG.md)
- [Commits](thephpleague/csv@9.24.1...9.27.1)

Updates `league/flysystem-aws-s3-v3` from 3.29.0 to 3.30.1
- [Commits](thephpleague/flysystem-aws-s3-v3@3.29.0...3.30.1)

Updates `maatwebsite/excel` from 3.1.64 to 3.1.67
- [Release notes](https://github.com/SpartnerNL/Laravel-Excel/releases)
- [Changelog](https://github.com/SpartnerNL/Laravel-Excel/blob/3.1/CHANGELOG.md)
- [Commits](SpartnerNL/Laravel-Excel@3.1.64...3.1.67)

Updates `tightenco/ziggy` from 2.5.3 to 2.6.0
- [Release notes](https://github.com/tighten/ziggy/releases)
- [Changelog](https://github.com/tighten/ziggy/blob/2.x/CHANGELOG.md)
- [Commits](tighten/ziggy@v2.5.3...v2.6.0)

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

Updates `barryvdh/laravel-ide-helper` from 3.5.5 to 3.6.0
- [Release notes](https://github.com/barryvdh/laravel-ide-helper/releases)
- [Changelog](https://github.com/barryvdh/laravel-ide-helper/blob/master/CHANGELOG.md)
- [Commits](barryvdh/laravel-ide-helper@v3.5.5...v3.6.0)

Updates `brianium/paratest` from 7.10.3 to 7.14.2
- [Release notes](https://github.com/paratestphp/paratest/releases)
- [Commits](paratestphp/paratest@v7.10.3...v7.14.2)

Updates `fumeapp/modeltyper` from 3.3.0 to 3.4.1
- [Release notes](https://github.com/fumeapp/modeltyper/releases)
- [Commits](fumeapp/modeltyper@v3.3.0...v3.4.1)

Updates `larastan/larastan` from 3.5.0 to 3.7.2
- [Release notes](https://github.com/larastan/larastan/releases)
- [Changelog](https://github.com/larastan/larastan/blob/3.x/RELEASE.md)
- [Commits](larastan/larastan@v3.5.0...v3.7.2)

Updates `laravel/pint` from 1.24.0 to 1.25.1
- [Release notes](https://github.com/laravel/pint/releases)
- [Changelog](https://github.com/laravel/pint/blob/main/CHANGELOG.md)
- [Commits](laravel/pint@v1.24.0...v1.25.1)

Updates `laravel/sail` from 1.43.1 to 1.46.0
- [Release notes](https://github.com/laravel/sail/releases)
- [Changelog](https://github.com/laravel/sail/blob/1.x/CHANGELOG.md)
- [Commits](laravel/sail@v1.43.1...v1.46.0)

Updates `laravel/telescope` from 5.10.0 to 5.14.1
- [Release notes](https://github.com/laravel/telescope/releases)
- [Changelog](https://github.com/laravel/telescope/blob/5.x/CHANGELOG.md)
- [Commits](laravel/telescope@v5.10.0...v5.14.1)

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

---
updated-dependencies:
- dependency-name: brick/money
  dependency-version: 0.10.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: datomatic/laravel-enum-helper
  dependency-version: 2.1.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: dedoc/scramble
  dependency-version: 0.13.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: guzzlehttp/guzzle
  dependency-version: 7.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: inertiajs/inertia-laravel
  dependency-version: 2.0.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: laravel/framework
  dependency-version: 12.35.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: laravel/jetstream
  dependency-version: 5.3.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: laravel/octane
  dependency-version: 2.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: laravel/passport
  dependency-version: 13.2.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: league/csv
  dependency-version: 9.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: league/flysystem-aws-s3-v3
  dependency-version: 3.30.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: maatwebsite/excel
  dependency-version: 3.1.67
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: tightenco/ziggy
  dependency-version: 2.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: tpetry/laravel-postgresql-enhanced
  dependency-version: 3.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: barryvdh/laravel-ide-helper
  dependency-version: 3.6.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: brianium/paratest
  dependency-version: 7.14.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: fumeapp/modeltyper
  dependency-version: 3.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: larastan/larastan
  dependency-version: 3.7.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: laravel/pint
  dependency-version: 1.25.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: laravel/sail
  dependency-version: 1.46.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: laravel/telescope
  dependency-version: 5.14.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: phpunit/phpunit
  dependency-version: 12.4.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/composer/main/minor-updates-b378df53f1 branch from 6e835e2 to c0bc7c1 Compare November 10, 2025 08:31
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