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 6 updates:

Package From To
dedoc/scramble 0.12.36 0.13.1
laravel/framework 12.34.0 12.35.1
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

Updates dedoc/scramble from 0.12.36 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

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'
  • 67384a3 Fix styling
  • 9054f9f Restricted attribute format for date_format rule (#983)
  • 41c3705 Fix styling
  • ada55ae [change] Support enum names extension property (#981)
  • 642461d Add support for wildcard array keys in validation rules (#993)
  • Additional commits viewable in compare view

Updates laravel/framework from 12.34.0 to 12.35.1

Release notes

Sourced from laravel/framework's releases.

v12.35.1

v12.35.0

Changelog

Sourced from laravel/framework's changelog.

v12.35.1 - 2025-10-23

v12.35.0 - 2025-10-21

Commits

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

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 6 updates:

| Package | From | To |
| --- | --- | --- |
| [dedoc/scramble](https://github.com/dedoc/scramble) | `0.12.36` | `0.13.1` |
| [laravel/framework](https://github.com/laravel/framework) | `12.34.0` | `12.35.1` |
| [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` |


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

Updates `laravel/framework` from 12.34.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.34.0...v12.35.1)

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)

---
updated-dependencies:
- 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: laravel/framework
  dependency-version: 12.35.1
  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
...

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 Oct 27, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 3, 2025

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

@dependabot dependabot bot closed this Nov 3, 2025
@dependabot dependabot bot deleted the dependabot/composer/main/minor-updates-966d5257eb branch November 3, 2025 03:37
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