Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 3, 2025

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

Package From To
dedoc/scramble 0.12.36 0.13.2
laravel/octane 2.13.0 2.13.1
laravel/passport 13.2.2 13.3.0
league/csv 9.27.0 9.27.1
league/flysystem-aws-s3-v3 3.29.0 3.30.1
brianium/paratest 7.14.1 7.14.2
fumeapp/modeltyper 3.4.0 3.4.1
laravel/sail 1.46.0 1.47.0
laravel/telescope 5.14.1 5.15.0

Updates dedoc/scramble from 0.12.36 to 0.13.2

Release notes

Sourced from dedoc/scramble's releases.

v0.13.2

What's Changed

  • Added support of variables used in validation rules by @​chaikivskyi in dedoc/scramble#1005
  • Fixed isInstanceOf could've returned null for template type.
  • Fixed infinite recursion for cases when @mixin of the class alias is used on the same class 😵‍💫

New Contributors

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

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

... (truncated)

Commits
  • 0879b46 Fix styling
  • e53b123 fix nested recursion
  • 01aa13b fix type issue
  • 5eb52c7 Fix styling
  • 0eb67ce feat: parse variables used in validation rules, pass http method to request (...
  • 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'
  • Additional commits viewable in compare view

Updates laravel/framework from 12.34.0 to 12.36.1

Release notes

Sourced from laravel/framework's releases.

v12.36.1

v12.36.0

v12.35.1

v12.35.0

... (truncated)

Changelog

Sourced from laravel/framework's changelog.

v12.36.1 - 2025-10-29

v12.36.0 - 2025-10-28

v12.35.1 - 2025-10-23

v12.35.0 - 2025-10-21

... (truncated)

Commits
  • cad110d Update version to v12.36.1
  • 8605f8a Revert "EnumerateValues::value() support and return negative values if exists...
  • 70b2c87 [12.x] add allDirectories() method to Filesytem (#57565)
  • 2a10877 always use the operator argument for version_compare() (#57569)
  • d158526 EnumerateValues::value() support and return negative values if exists #54910 ...
  • 7d99c2a Update CHANGELOG
  • 5247c8f Update version to v12.36.0
  • d71b256 Update facade docblocks
  • f5cf0d4 [12.x] Add concurrency control to Http::pool and Http::batch (#57555)
  • b5e9003 Exclude property hooks on return of Model::__sleep() (#57557)
  • Additional commits viewable in compare view

Updates laravel/octane from 2.13.0 to 2.13.1

Release notes

Sourced from laravel/octane's releases.

v2.13.1

Changelog

Sourced from laravel/octane's changelog.

v2.13.1 - 2025-10-27

Commits
  • 20b741b Update the signature for octane:start (#1073)
  • 558abf7 fix(concurrency): skip Octane::concurrently when no tasks to prevent false Ta...
  • c9ca504 [2.x] Don't ignore write error messages anymore (#1068)
  • f41a19a Update CHANGELOG
  • See full diff in compare view

Updates laravel/passport from 13.2.2 to 13.3.0

Release notes

Sourced from laravel/passport's releases.

v13.3.0

Changelog

Sourced from laravel/passport's changelog.

v13.3.0 - 2025-10-26

Commits
  • aee8af1 feat: Allow findForPassport to optionally receive the OAuth client (#1866)
  • abfaf30 chore(UPGRADE): v13, update oauth_clients table schema changes (#1865)
  • ae25d64 Update CHANGELOG
  • See full diff in compare view

Updates league/csv from 9.27.0 to 9.27.1

Release notes

Sourced from league/csv's releases.

version 9.27.1

Added

  • None

Deprecated

  • None

Fixed

  • AbstractCsv::download improved implementation see #569

Remove

  • None
Changelog

Sourced from league/csv's changelog.

9.27.1 - 2025-10-25

Added

  • None

Deprecated

  • None

Fixed

  • AbstractCsv::download improved implementation see #569

Remove

  • None
Commits

Updates league/flysystem-aws-s3-v3 from 3.29.0 to 3.30.1

Commits
  • d286e89 Fixed #1882: Prevent listing directory named 0 from returning unfiltered resp...
  • See full diff in compare view

Updates brianium/paratest from 7.14.1 to 7.14.2

Release notes

Sourced from brianium/paratest's releases.

v7.14.2

What's Changed

Full Changelog: paratestphp/paratest@v7.14.1...v7.14.2

Commits
  • de06de1 Drop \<testsuites> name attribute that doesn't exist in PHPUnit (#1042)
  • bc788bd Update dependency phpstan/phpstan to ^2.1.31
  • 4190162 Update dependency phpunit/phpunit to ^12.4.1 (#1038)
  • See full diff in compare view

Updates fumeapp/modeltyper from 3.4.0 to 3.4.1

Release notes

Sourced from fumeapp/modeltyper's releases.

v3.4.1

What's Changed

Full Changelog: fumeapp/modeltyper@v3.4.0...v3.4.1

Commits
  • 30dccdd Fixes coding style
  • 8a12391 Refactor type resolution logic in WriteColumnAttribute and update array mappi...
  • See full diff in compare view

Updates laravel/sail from 1.46.0 to 1.47.0

Release notes

Sourced from laravel/sail's releases.

v1.47.0

Changelog

Sourced from laravel/sail's changelog.

v1.47.0 - 2025-10-28

Commits

Updates laravel/telescope from 5.14.1 to 5.15.0

Release notes

Sourced from laravel/telescope's releases.

v5.15.0

Changelog

Sourced from laravel/telescope's changelog.

v5.15.0 - 2025-10-23

Commits

Updates phpunit/phpunit from 12.4.1 to 12.4.2

Release notes

Sourced from phpunit/phpunit's releases.

PHPUnit 12.4.2

Changed

  • Skipped tests alone no longer lead to a yellow background for the test result summary

Fixed

  • #6391: Errors during backup of global variables and static properties are not reported

Learn how to install or update PHPUnit 12.4 in the documentation.

Keep up to date with PHPUnit:

  • You can follow @​[email protected] to stay up to date with PHPUnit's development.
  • You can subscribe to the PHPUnit Updates newsletter to receive updates about and tips for PHPUnit.
Changelog

Sourced from phpunit/phpunit's changelog.

[12.4.2] - 2025-10-30

Changed

  • Skipped tests alone no longer lead to a yellow background for the test result summary

Fixed

  • #6391: Errors during backup of global variables and static properties are not reported
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

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

| Package | From | To |
| --- | --- | --- |
| [dedoc/scramble](https://github.com/dedoc/scramble) | `0.12.36` | `0.13.2` |
| [laravel/octane](https://github.com/laravel/octane) | `2.13.0` | `2.13.1` |
| [laravel/passport](https://github.com/laravel/passport) | `13.2.2` | `13.3.0` |
| [league/csv](https://github.com/thephpleague/csv) | `9.27.0` | `9.27.1` |
| [league/flysystem-aws-s3-v3](https://github.com/thephpleague/flysystem-aws-s3-v3) | `3.29.0` | `3.30.1` |
| [brianium/paratest](https://github.com/paratestphp/paratest) | `7.14.1` | `7.14.2` |
| [fumeapp/modeltyper](https://github.com/fumeapp/modeltyper) | `3.4.0` | `3.4.1` |
| [laravel/sail](https://github.com/laravel/sail) | `1.46.0` | `1.47.0` |
| [laravel/telescope](https://github.com/laravel/telescope) | `5.14.1` | `5.15.0` |



Updates `dedoc/scramble` from 0.12.36 to 0.13.2
- [Release notes](https://github.com/dedoc/scramble/releases)
- [Commits](dedoc/scramble@v0.12.36...v0.13.2)

Updates `laravel/framework` from 12.34.0 to 12.36.1
- [Release notes](https://github.com/laravel/framework/releases)
- [Changelog](https://github.com/laravel/framework/blob/12.x/CHANGELOG.md)
- [Commits](laravel/framework@v12.34.0...v12.36.1)

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

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

Updates `league/csv` from 9.27.0 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.27.0...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 `brianium/paratest` from 7.14.1 to 7.14.2
- [Release notes](https://github.com/paratestphp/paratest/releases)
- [Commits](paratestphp/paratest@v7.14.1...v7.14.2)

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

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

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

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

---
updated-dependencies:
- dependency-name: dedoc/scramble
  dependency-version: 0.13.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: laravel/framework
  dependency-version: 12.36.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: laravel/octane
  dependency-version: 2.13.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: laravel/passport
  dependency-version: 13.3.0
  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-patch
  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: brianium/paratest
  dependency-version: 7.14.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: fumeapp/modeltyper
  dependency-version: 3.4.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
- dependency-name: laravel/sail
  dependency-version: 1.47.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: laravel/telescope
  dependency-version: 5.15.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-updates
- dependency-name: phpunit/phpunit
  dependency-version: 12.4.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-updates
...

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 Nov 3, 2025
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