Skip to content

chore(deps): bump the php-dependencies group across 1 directory with 18 updates #333

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

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 14, 2025

Bumps the php-dependencies group with 16 updates in the / directory:

Package From To
blade-ui-kit/blade-heroicons 2.5.0 2.6.0
doctrine/dbal 4.2.1 4.2.2
filament/spatie-laravel-media-library-plugin 3.2.133 3.2.140
laravel/sanctum 4.0.7 4.0.8
laravel/socialite 5.16.1 5.18.0
sentry/sentry-laravel 4.10.2 4.12.0
spatie/laravel-data 4.11.1 4.13.0
spatie/laravel-permission 6.10.1 6.14.0
spatie/laravel-sitemap 7.3.1 7.3.4
stevebauman/location 7.4.0 7.4.1
symfony/http-client 7.2.2 7.2.3
vormkracht10/filament-mails 2.0.1 2.2.3
ysfkaya/filament-phone-input 3.1.4 3.1.5
larastan/larastan 3.0.2 3.0.4
laravel/breeze 2.3.0 2.3.4
laravel/pint 1.19.0 1.20.0

Updates blade-ui-kit/blade-heroicons from 2.5.0 to 2.6.0

Release notes

Sourced from blade-ui-kit/blade-heroicons's releases.

2.6.0

Changelog

Sourced from blade-ui-kit/blade-heroicons's changelog.

2.6.0 - 2025-02-13

Commits

Updates doctrine/dbal from 4.2.1 to 4.2.2

Release notes

Sourced from doctrine/dbal's releases.

4.2.2

Release Notes for 4.2.2

4.2.2

  • Total issues resolved: 1
  • Total pull requests resolved: 18
  • Total contributors: 12

Static Analysis

Bug,PostgreSQL,Schema Comparison

Test Suite

Documentation

Bug,Schema Management

CI

Bug,Connecting,Connections,PDO,PHP

Bug,Quoting,SQL Server,Schema Management

Bug,PostgreSQL,Quoting,Schema Management

... (truncated)

Commits
  • 19a2b7d Merge branch '3.9.x' into 4.2.x
  • ec16c82 bugfix: deallocate mysqli prepared statement (#6681)
  • bfe8fcf Merge remote-tracking branch 'origin/3.9.x' into 4.2.x
  • 9f28dee Merge pull request #6719 from greg0ire/drop-psalm
  • 6cea6d4 Remove phpstan- prefix
  • 6ebb10d Run PHPStan on tests
  • 80e7ec0 Drop Psalm in favor of PHPStan
  • 4933e84 Merge pull request #6711 from greg0ire/4.2.x
  • 410de46 Merge remote-tracking branch 'origin/3.9.x' into 4.2.x
  • e149322 Merge pull request #6708 from greg0ire/pin-pcov-windows
  • Additional commits viewable in compare view

Updates filament/spatie-laravel-media-library-plugin from 3.2.133 to 3.2.140

Commits

Updates laravel/framework from 11.37.0 to 11.42.1

Release notes

Sourced from laravel/framework's releases.

v11.42.1

v11.42.0

v11.41.3

... (truncated)

Changelog

Sourced from laravel/framework's changelog.

v11.42.1 - 2025-02-12

v11.42.0 - 2025-02-11

... (truncated)

Commits

Updates laravel/sanctum from 4.0.7 to 4.0.8

Release notes

Sourced from laravel/sanctum's releases.

v4.0.8

Changelog

Sourced from laravel/sanctum's changelog.

v4.0.8 - 2025-01-26

Commits

Updates laravel/socialite from 5.16.1 to 5.18.0

Release notes

Sourced from laravel/socialite's releases.

v5.18.0

v5.17.1

v5.17.0

Changelog

Sourced from laravel/socialite's changelog.

v5.18.0 - 2025-02-11

v5.17.1 - 2025-01-28

v5.17.0 - 2025-01-17

Commits

Updates laravel/tinker from 2.10.0 to 2.10.1

Release notes

Sourced from laravel/tinker's releases.

v2.10.1

Changelog

Sourced from laravel/tinker's changelog.

v2.10.1 - 2025-01-27

Commits

Updates sentry/sentry-laravel from 4.10.2 to 4.12.0

Release notes

Sourced from sentry/sentry-laravel's releases.

4.12.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.12.0.

Features

Bug Fixes

Misc

  • Disable scheduled task tracing for backgrounded tasks [(#975)](getsentry/sentry-laravel#975)

    Backgrounded tasks show up a ~1ms transactions right now because we are effectively monitoring the time it takes to start the background process instead of the execution. We are working on a solution to this problem, but in the meantime, we are disabling the monitoring of backgrounded tasks (that was introduces in 4.11.0).

4.11.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.11.0.

Features

Bug Fixes

Changelog

Sourced from sentry/sentry-laravel's changelog.

4.12.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.12.0.

Features

Bug Fixes

Misc

  • Disable scheduled task tracing for backgrounded tasks [(#975)](getsentry/sentry-laravel#975)

    Backgrounded tasks show up a ~1ms transactions right now because we are effectively monitoring the time it takes to start the background process instead of the execution. We are working on a solution to this problem, but in the meantime, we are disabling the monitoring of backgrounded tasks (that was introduces in 4.11.0).

4.11.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Laravel SDK v4.11.0.

Features

Bug Fixes

Commits

Updates spatie/laravel-data from 4.11.1 to 4.13.0

Release notes

Sourced from spatie/laravel-data's releases.

4.13.0

What's Changed

Full Changelog: spatie/laravel-data@4.12.0...4.13.0

4.12.0

What a release! Probably to biggest minor release we've ever done!

Some cool highlights:

Disabling optional values

Optional values are great, but sometimes a null value is desirable from now on you can do the following:

class SongData extends Data {
    public function __construct(
        public string $title,
        public string $artist,
        public Optional|null|string $album,
    ) {
    }
}
SongData::factory()
->withoutOptionalValues()
->from(['title' => 'Never gonna give you up', 'artist' => 'Rick Astley']); // album will null instead of Optional

Injecting property values

It was already possible to inject a Laravel route parameter when creating a data object, we've now extended this functionality quite a bit and also allow injecting dependencies from the container and the authenticated user.

class SongData extends Data {
    #[FromAuthenticatedUser]
    public UserData $user;
}

Merging manual rules

In the past when the validation rules of a property were manually defined, the automatic validation rules for that property were omitted. From now on, you can define manual validation rules and merge them with the automatically generated validation rules:

```php
#[MergeValidationRules]
</tr></table> 

... (truncated)

Changelog

Sourced from spatie/laravel-data's changelog.

4.13.0 - 2025-01-24

What's Changed

Full Changelog: spatie/laravel-data@4.12.0...4.13.0

4.12.0 - 2025-01-24

What a release! Probably to biggest minor release we've ever done!

Some cool highlights:

Disabling optional values

Optional values are great, but sometimes a null value is desirable from now on you can do the following:

class SongData extends Data {
    public function __construct(
        public string $title,
        public string $artist,
        public Optional|null|string $album,
    ) {
    }
}
SongData::factory()
->withoutOptionalValues()
->from(['title' => 'Never gonna give you up', 'artist' => 'Rick Astley']); // album will null instead of Optional

Injecting property values

It was already possible to inject a Laravel route parameter when creating a data object, we've now extended this functionality quite a bit and also allow injecting dependencies from the container and the authenticated user.

class SongData extends Data {
    #[FromAuthenticatedUser]
    public UserData $user;
}

Merging manual rules

In the past when the validation rules of a property were manually defined, the automatic validation rules for that property were omitted. From now on, you can define manual validation rules and merge them with the automatically generated validation rules:

... (truncated)

Commits
  • 64fe302 Fix tests on 8.4
  • 896cf60 Update GitHub Actions
  • fa6782c Merge pull request #831 from spatie/auto-lazy
  • 46f9551 Add support for inertia,closure and relational lazy when autoloading
  • debae6f Update CHANGELOG
  • 66c59db Merge branch 'main' into auto-lazy
  • b6f63fa Merge branch 'c-v-c-v-feature/from-data-attribute'
  • 5f86904 Rework injecting properties pr
  • 3fe410c Merge branch 'feature/from-data-attribute' of github.com:c-v-c-v/laravel-data...
  • ef29408 Fix styling
  • Additional commits viewable in compare view

Updates spatie/laravel-permission from 6.10.1 to 6.14.0

Release notes

Sourced from spatie/laravel-permission's releases.

6.14.0

What's Changed

Internals

New Contributors

Full Changelog: spatie/laravel-permission@6.13.0...6.14.0

6.13.0

What's Changed

New Contributors

Full Changelog: spatie/laravel-permission@6.12.0...6.13.0

6.12.0

What's Changed

  • Support Laravel 12

Full Changelog: spatie/laravel-permission@6.11.0...6.12.0

6.11.0

What's Changed

Internals

Documentation Updates

New Contributors

... (truncated)

Changelog

Sourced from spatie/laravel-permission's changelog.

6.14.0 - 2025-02-13

What's Changed

Internals

New Contributors

Full Changelog: spatie/laravel-permission@6.13.0...6.14.0

6.13.0 - 2025-02-05

What's Changed

New Contributors

Full Changelog: spatie/laravel-permission@6.12.0...6.13.0

6.12.0 - 2025-01-31

What's Changed

  • Support Laravel 12

Full Changelog: spatie/laravel-permission@6.11.0...6.12.0

6.11.0 - 2025-01-30

What's Changed

…18 updates

Bumps the php-dependencies group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [blade-ui-kit/blade-heroicons](https://github.com/blade-ui-kit/blade-heroicons) | `2.5.0` | `2.6.0` |
| [doctrine/dbal](https://github.com/doctrine/dbal) | `4.2.1` | `4.2.2` |
| [filament/spatie-laravel-media-library-plugin](https://github.com/filamentphp/spatie-laravel-media-library-plugin) | `3.2.133` | `3.2.140` |
| [laravel/sanctum](https://github.com/laravel/sanctum) | `4.0.7` | `4.0.8` |
| [laravel/socialite](https://github.com/laravel/socialite) | `5.16.1` | `5.18.0` |
| [sentry/sentry-laravel](https://github.com/getsentry/sentry-laravel) | `4.10.2` | `4.12.0` |
| [spatie/laravel-data](https://github.com/spatie/laravel-data) | `4.11.1` | `4.13.0` |
| [spatie/laravel-permission](https://github.com/spatie/laravel-permission) | `6.10.1` | `6.14.0` |
| [spatie/laravel-sitemap](https://github.com/spatie/laravel-sitemap) | `7.3.1` | `7.3.4` |
| [stevebauman/location](https://github.com/stevebauman/location) | `7.4.0` | `7.4.1` |
| [symfony/http-client](https://github.com/symfony/http-client) | `7.2.2` | `7.2.3` |
| [vormkracht10/filament-mails](https://github.com/vormkracht10/filament-mails) | `2.0.1` | `2.2.3` |
| [ysfkaya/filament-phone-input](https://github.com/ysfkaya/filament-phone-input) | `3.1.4` | `3.1.5` |
| [larastan/larastan](https://github.com/larastan/larastan) | `3.0.2` | `3.0.4` |
| [laravel/breeze](https://github.com/laravel/breeze) | `2.3.0` | `2.3.4` |
| [laravel/pint](https://github.com/laravel/pint) | `1.19.0` | `1.20.0` |



Updates `blade-ui-kit/blade-heroicons` from 2.5.0 to 2.6.0
- [Release notes](https://github.com/blade-ui-kit/blade-heroicons/releases)
- [Changelog](https://github.com/blade-ui-kit/blade-heroicons/blob/main/CHANGELOG.md)
- [Commits](driesvints/blade-heroicons@2.5.0...2.6.0)

Updates `doctrine/dbal` from 4.2.1 to 4.2.2
- [Release notes](https://github.com/doctrine/dbal/releases)
- [Commits](doctrine/dbal@4.2.1...4.2.2)

Updates `filament/spatie-laravel-media-library-plugin` from 3.2.133 to 3.2.140
- [Commits](filamentphp/spatie-laravel-media-library-plugin@v3.2.133...v3.2.140)

Updates `laravel/framework` from 11.37.0 to 11.42.1
- [Release notes](https://github.com/laravel/framework/releases)
- [Changelog](https://github.com/laravel/framework/blob/11.x/CHANGELOG.md)
- [Commits](laravel/framework@v11.37.0...v11.42.1)

Updates `laravel/sanctum` from 4.0.7 to 4.0.8
- [Release notes](https://github.com/laravel/sanctum/releases)
- [Changelog](https://github.com/laravel/sanctum/blob/4.x/CHANGELOG.md)
- [Commits](laravel/sanctum@v4.0.7...v4.0.8)

Updates `laravel/socialite` from 5.16.1 to 5.18.0
- [Release notes](https://github.com/laravel/socialite/releases)
- [Changelog](https://github.com/laravel/socialite/blob/5.x/CHANGELOG.md)
- [Commits](laravel/socialite@v5.16.1...v5.18.0)

Updates `laravel/tinker` from 2.10.0 to 2.10.1
- [Release notes](https://github.com/laravel/tinker/releases)
- [Changelog](https://github.com/laravel/tinker/blob/2.x/CHANGELOG.md)
- [Commits](laravel/tinker@v2.10.0...v2.10.1)

Updates `sentry/sentry-laravel` from 4.10.2 to 4.12.0
- [Release notes](https://github.com/getsentry/sentry-laravel/releases)
- [Changelog](https://github.com/getsentry/sentry-laravel/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-laravel@4.10.2...4.12.0)

Updates `spatie/laravel-data` from 4.11.1 to 4.13.0
- [Release notes](https://github.com/spatie/laravel-data/releases)
- [Changelog](https://github.com/spatie/laravel-data/blob/main/CHANGELOG.md)
- [Commits](spatie/laravel-data@4.11.1...4.13.0)

Updates `spatie/laravel-permission` from 6.10.1 to 6.14.0
- [Release notes](https://github.com/spatie/laravel-permission/releases)
- [Changelog](https://github.com/spatie/laravel-permission/blob/main/CHANGELOG.md)
- [Commits](spatie/laravel-permission@6.10.1...6.14.0)

Updates `spatie/laravel-sitemap` from 7.3.1 to 7.3.4
- [Release notes](https://github.com/spatie/laravel-sitemap/releases)
- [Changelog](https://github.com/spatie/laravel-sitemap/blob/main/CHANGELOG.md)
- [Commits](spatie/laravel-sitemap@7.3.1...7.3.4)

Updates `stevebauman/location` from 7.4.0 to 7.4.1
- [Release notes](https://github.com/stevebauman/location/releases)
- [Commits](stevebauman/location@v7.4.0...v7.4.1)

Updates `symfony/http-client` from 7.2.2 to 7.2.3
- [Release notes](https://github.com/symfony/http-client/releases)
- [Changelog](https://github.com/symfony/http-client/blob/7.2/CHANGELOG.md)
- [Commits](symfony/http-client@v7.2.2...v7.2.3)

Updates `vormkracht10/filament-mails` from 2.0.1 to 2.2.3
- [Release notes](https://github.com/vormkracht10/filament-mails/releases)
- [Changelog](https://github.com/vormkracht10/filament-mails/blob/main/CHANGELOG.md)
- [Commits](vormkracht10/filament-mails@v2.0.1...v2.2.3)

Updates `ysfkaya/filament-phone-input` from 3.1.4 to 3.1.5
- [Release notes](https://github.com/ysfkaya/filament-phone-input/releases)
- [Changelog](https://github.com/ysfkaya/filament-phone-input/blob/main/CHANGELOG.md)
- [Commits](ysfkaya/filament-phone-input@v3.1.4...v3.1.5)

Updates `larastan/larastan` from 3.0.2 to 3.0.4
- [Release notes](https://github.com/larastan/larastan/releases)
- [Changelog](https://github.com/larastan/larastan/blob/3.x/RELEASE.md)
- [Commits](larastan/larastan@v3.0.2...v3.0.4)

Updates `laravel/breeze` from 2.3.0 to 2.3.4
- [Release notes](https://github.com/laravel/breeze/releases)
- [Changelog](https://github.com/laravel/breeze/blob/2.x/CHANGELOG.md)
- [Commits](laravel/breeze@v2.3.0...v2.3.4)

Updates `laravel/pint` from 1.19.0 to 1.20.0
- [Release notes](https://github.com/laravel/pint/releases)
- [Changelog](https://github.com/laravel/pint/blob/main/CHANGELOG.md)
- [Commits](laravel/pint@v1.19.0...v1.20.0)

---
updated-dependencies:
- dependency-name: blade-ui-kit/blade-heroicons
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: php-dependencies
- dependency-name: doctrine/dbal
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-dependencies
- dependency-name: filament/spatie-laravel-media-library-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-dependencies
- dependency-name: laravel/framework
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: php-dependencies
- dependency-name: laravel/sanctum
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-dependencies
- dependency-name: laravel/socialite
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: php-dependencies
- dependency-name: laravel/tinker
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-dependencies
- dependency-name: sentry/sentry-laravel
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: php-dependencies
- dependency-name: spatie/laravel-data
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: php-dependencies
- dependency-name: spatie/laravel-permission
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: php-dependencies
- dependency-name: spatie/laravel-sitemap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-dependencies
- dependency-name: stevebauman/location
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-dependencies
- dependency-name: symfony/http-client
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-dependencies
- dependency-name: vormkracht10/filament-mails
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: php-dependencies
- dependency-name: ysfkaya/filament-phone-input
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: php-dependencies
- dependency-name: larastan/larastan
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: php-dependencies
- dependency-name: laravel/breeze
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: php-dependencies
- dependency-name: laravel/pint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: php-dependencies
...

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 Feb 14, 2025
@github-actions github-actions bot enabled auto-merge February 14, 2025 10:30
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 21, 2025

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

@dependabot dependabot bot closed this Feb 21, 2025
auto-merge was automatically disabled February 21, 2025 10:32

Pull request was closed

@dependabot dependabot bot deleted the dependabot/composer/php-dependencies-9912a84e8a branch February 21, 2025 10:32
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