Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Bumps the minor-updates group with 10 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.4.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
larastan/larastan 3.7.2 3.8.0
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.37.0

Release notes

Sourced from laravel/framework's releases.

v12.37.0

v12.36.1

v12.36.0

v12.35.1

... (truncated)

Changelog

Sourced from laravel/framework's changelog.

v12.37.0 - 2025-11-04

v12.36.1 - 2025-10-29

v12.36.0 - 2025-10-28

v12.35.1 - 2025-10-23

... (truncated)

Commits
  • 3c3c4ad Update version to v12.37.0
  • b556cbb [12.x] ChainedBatch keeps queue and connection of wrapped batch (#57630)
  • 361f3fc Process queue jobs in background (#57648)
  • a48282a Feature/json schema improvements (#57609)
  • 264ae5b [12.x] Ensure custom validation messages work for the File rule (#57656)
  • b398db0 refactor: remove unused $app parameter in ArtisanServiceProvider (#57658)
  • ca88219 [12.x] Queue tests for Redis Cluster missing QUEUE_CONNECTION (#57641)
  • 8583094 refactor: remove unused closure parameters in DatabaseServiceProvider (#57644)
  • 0fc5528 [12.x] Fix: Correctly fallback to notification's connection/queue when using ...
  • 344c7ea improve Connection@listen docblock (#57633)
  • 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.4.0

Release notes

Sourced from laravel/passport's releases.

v13.4.0

v13.3.0

Changelog

Sourced from laravel/passport's changelog.

v13.4.0 - 2025-11-02

v13.3.0 - 2025-10-26

Commits
  • 10423e2 [13.x] Add static setter for authorizationServerResponseType (#1867)
  • 55be263 Update CHANGELOG
  • 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 larastan/larastan from 3.7.2 to 3.8.0

Release notes

Sourced from larastan/larastan's releases.

3.8.0

What's Changed

Added

Add optional phpMyAdmin SQL parser integration by @​canvural in larastan/larastan#2388

Larastan can now detect automatically if you have phpmyadmin/sql-parser package and use that to parse your squashed database migrations. This parser package has better support for different SQL keywords. Note: The package has GPL 2 license. Meaning if you install it and distribute your app with it you also need to have GPL 2 licensed application. But generally this is not a problem because you should install Larastan and the sql-parser package as a development dependency and remove these development dependencies while deploying your application to production.

Treat unsigned database columns as non-negative-int larastan/larastan@52aa393

Fixed

Internal

Full Changelog: larastan/larastan@v3.7.2...v3.8.0

Commits
  • d13ef96 fix tests
  • 52aa393 feat: treat unsigned database columns as non-negative-int
  • 9ef2a7b fix: run only SQL parser tests in phpmyadmin CI job
  • 8245ac3 chore: use cached parser for parsing migrations
  • 0ea3de7 fix: cache model casts
  • 974100d fix: add int to Enumerable::pluck argument
  • 2be8fcf feat: add optional phpMyAdmin SQL parser integration (#2388)
  • b1cf0c8 feat: add some fixable nodes
  • 5d5c877 chore: phpunit hasProperty/getProperty deprecations (#2379)
  • 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:

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 10 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.4.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` |
| [larastan/larastan](https://github.com/larastan/larastan) | `3.7.2` | `3.8.0` |
| [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.37.0
- [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.37.0)

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.4.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.4.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 `larastan/larastan` from 3.7.2 to 3.8.0
- [Release notes](https://github.com/larastan/larastan/releases)
- [Changelog](https://github.com/larastan/larastan/blob/3.x/RELEASE.md)
- [Commits](larastan/larastan@v3.7.2...v3.8.0)

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.37.0
  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.4.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: larastan/larastan
  dependency-version: 3.8.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file php Pull requests that update php code labels Nov 10, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 17, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 24, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Nov 24, 2025
@dependabot dependabot bot deleted the dependabot/composer/main/minor-updates-4a72911ba5 branch November 24, 2025 03:47
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