Skip to content
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

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

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 31, 2025

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

Package From To
doctrine/dbal 4.2.1 4.2.2
filament/spatie-laravel-media-library-plugin 3.2.133 3.2.135
laravel/sanctum 4.0.7 4.0.8
laravel/socialite 5.16.1 5.17.1
sentry/sentry-laravel 4.10.2 4.11.0
spatie/laravel-data 4.11.1 4.13.0
spatie/laravel-permission 6.10.1 6.12.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.0
laravel/breeze 2.3.0 2.3.3
laravel/pint 1.19.0 1.20.0

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.135

Commits

Updates laravel/framework from 11.37.0 to 11.41.3

Release notes

Sourced from laravel/framework's releases.

v11.41.3

No release notes provided.

v11.41.2

No release notes provided.

v11.41.1

v11.41.0

v11.40.0

v11.39.1

... (truncated)

Changelog

Sourced from laravel/framework's changelog.

v11.41.3 - 2025-01-30

v11.41.2 - 2025-01-30

v11.41.1 - 2025-01-30

v11.41.0 - 2025-01-28

v11.40.0 - 2025-01-24

v11.39.1 - 2025-01-22

... (truncated)

Commits
  • 3ef433d Update version to v11.41.3
  • e615f08 configure disks
  • 38be038 Update CHANGELOG
  • b8251a0 Update version to v11.41.2
  • 5d97059 import
  • 3d98cf6 Update CHANGELOG
  • f435c95 Update version to v11.41.1
  • 67e2ee8 Handle pooled Postgres connections for Laravel Cloud (#54346)
  • 62044a5 feat: gracefully handle command not found exception - avoid creds exposure (#...
  • 01571b3 [11.x] Optimize loadTranslationsFrom function for simplicity and clarity (#...
  • Additional commits viewable in compare view

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.17.1

Release notes

Sourced from laravel/socialite's releases.

v5.17.1

v5.17.0

Changelog

Sourced from laravel/socialite's changelog.

v5.17.1 - 2025-01-28

v5.17.0 - 2025-01-17

Commits
  • 4b44c97 Supports Laravel 12 (#730)
  • 20a8216 Update CHANGELOG
  • 77be8be Added 2 additional tests for GitHub driver programmatic scope merging and ove...
  • b2ce47b [5.x] Adds support for configuring scope of providers from configuration. (#728)
  • c654af8 Add "email_verified" to linkedin openid (#725)
  • d1267db Update CHANGELOG
  • See full diff in compare view

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.11.0

Release notes

Sourced from sentry/sentry-laravel's releases.

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.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.12.0

Release notes

Sourced from spatie/laravel-permission's releases.

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

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

Changelog

Sourced from spatie/laravel-permission's changelog.

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

Internals

Documentation Updates

New Contributors

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

Commits

Updates spatie/laravel-sitemap from 7.3.1 to 7.3.4

Release notes

Sourced from spatie/laravel-sitemap's releases.

7.3.4

What's Changed

New Contributors

Full Changelog: spatie/laravel-sitemap@7.3.3...7.3.4

7.3.3

What's Changed

New Contributors

Full Changelog: spatie/laravel-sitemap@7.3.2...7.3.3

7.3.2

What's Changed

Full Changelog: spatie/laravel-sitemap@7.3.1...7.3.2

Changelog

Sourced from spatie/laravel-sitemap's changelog.

7.3.4 - 2025-01-31

What's Changed

New Contributors

Full Changelog: spatie/laravel-sitemap@7.3.3...7.3.4

7.3.3 - 2025-01-27

What's Changed

New Contributors

Full Changelog: spatie/laravel-sitemap@7.3.2...7.3.3

7.3.2 - 2025-01-13

What's Changed

Full Changelog: spatie/laravel-sitemap@7.3.1...7.3.2

Commits

Updates stevebauman/location from 7.4.0 to 7.4.1

Release notes

Sourced from stevebauman/location's releases.

v7.4.1

Fixed

Commits
  • b7caada Fix Laravel 8 compatibility
  • b48fe8d Merge pull request #188 from onlime/php84-deprecations
  • e380acf Fixing PHP 8.4 Implicitly marking parameter ... as nullable deprecations
  • See full diff in compare view

Updates symfony/http-client from 7.2.2 to 7.2.3

Release notes

Sourced from symfony/http-client's releases.

v7.2.3

Changelog (symfony/http-client@v7.2.2...v7.2.3)

  • bug symfony/symfony#59631 [HttpClient] Fix processing a NativeResponse after its client has been reset (@​Jean-Beru)
  • bug symfony/symfony#58901 [HttpClient] Ignore RuntimeExceptions thrown when rewinding the PSR-7 created in HttplugWaitLoop::createPsr7Resp...

    Description has been truncated

…15 updates

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

| Package | From | To |
| --- | --- | --- |
| [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.135` |
| [laravel/sanctum](https://github.com/laravel/sanctum) | `4.0.7` | `4.0.8` |
| [laravel/socialite](https://github.com/laravel/socialite) | `5.16.1` | `5.17.1` |
| [sentry/sentry-laravel](https://github.com/getsentry/sentry-laravel) | `4.10.2` | `4.11.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.12.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.0` |
| [laravel/breeze](https://github.com/laravel/breeze) | `2.3.0` | `2.3.3` |
| [laravel/pint](https://github.com/laravel/pint) | `1.19.0` | `1.20.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.135
- [Commits](filamentphp/spatie-laravel-media-library-plugin@v3.2.133...v3.2.135)

Updates `laravel/framework` from 11.37.0 to 11.41.3
- [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.41.3)

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.17.1
- [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.17.1)

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.11.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.11.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.12.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.12.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.0
- [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.0)

Updates `laravel/breeze` from 2.3.0 to 2.3.3
- [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.3)

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: 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: 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 Jan 31, 2025
@github-actions github-actions bot enabled auto-merge January 31, 2025 10:13
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 7, 2025

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

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

Pull request was closed

@dependabot dependabot bot deleted the dependabot/composer/php-dependencies-ae4005728e branch February 7, 2025 10:16
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