Skip to content

Commit

Permalink
chore(deps): bump the package-back group with 7 updates (#102)
Browse files Browse the repository at this point in the history
* chore(deps): bump the package-back group with 7 updates

Bumps the package-back group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [filament/spatie-laravel-tags-plugin](https://github.com/filamentphp/spatie-laravel-tags-plugin) | `3.2.123` | `3.2.124` |
| [laravel/framework](https://github.com/laravel/framework) | `11.31.0` | `11.32.0` |
| [livewire/volt](https://github.com/livewire/volt) | `1.6.5` | `1.6.6` |
| [barryvdh/laravel-debugbar](https://github.com/barryvdh/laravel-debugbar) | `3.14.6` | `3.14.7` |
| [larastan/larastan](https://github.com/larastan/larastan) | `2.9.10` | `3.0.0` |
| [laravel/breeze](https://github.com/laravel/breeze) | `2.2.4` | `2.2.5` |
| [laravel/sail](https://github.com/laravel/sail) | `1.37.1` | `1.38.0` |


Updates `filament/spatie-laravel-tags-plugin` from 3.2.123 to 3.2.124
- [Commits](filamentphp/spatie-laravel-tags-plugin@v3.2.123...v3.2.124)

Updates `laravel/framework` from 11.31.0 to 11.32.0
- [Release notes](https://github.com/laravel/framework/releases)
- [Changelog](https://github.com/laravel/framework/blob/11.x/CHANGELOG.md)
- [Commits](laravel/framework@v11.31.0...v11.32.0)

Updates `livewire/volt` from 1.6.5 to 1.6.6
- [Release notes](https://github.com/livewire/volt/releases)
- [Changelog](https://github.com/livewire/volt/blob/main/CHANGELOG.md)
- [Commits](livewire/volt@v1.6.5...v1.6.6)

Updates `barryvdh/laravel-debugbar` from 3.14.6 to 3.14.7
- [Release notes](https://github.com/barryvdh/laravel-debugbar/releases)
- [Changelog](https://github.com/barryvdh/laravel-debugbar/blob/master/CHANGELOG.md)
- [Commits](barryvdh/laravel-debugbar@v3.14.6...v3.14.7)

Updates `larastan/larastan` from 2.9.10 to 3.0.0
- [Release notes](https://github.com/larastan/larastan/releases)
- [Changelog](https://github.com/larastan/larastan/blob/3.x/RELEASE.md)
- [Upgrade guide](https://github.com/larastan/larastan/blob/3.x/UPGRADE.md)
- [Commits](larastan/larastan@v2.9.10...v3.0.0)

Updates `laravel/breeze` from 2.2.4 to 2.2.5
- [Release notes](https://github.com/laravel/breeze/releases)
- [Changelog](https://github.com/laravel/breeze/blob/2.x/CHANGELOG.md)
- [Commits](laravel/breeze@v2.2.4...v2.2.5)

Updates `laravel/sail` from 1.37.1 to 1.38.0
- [Release notes](https://github.com/laravel/sail/releases)
- [Changelog](https://github.com/laravel/sail/blob/1.x/CHANGELOG.md)
- [Commits](laravel/sail@v1.37.1...v1.38.0)

---
updated-dependencies:
- dependency-name: filament/spatie-laravel-tags-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: package-back
- dependency-name: laravel/framework
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: package-back
- dependency-name: livewire/volt
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: package-back
- dependency-name: barryvdh/laravel-debugbar
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: package-back
- dependency-name: larastan/larastan
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: package-back
- dependency-name: laravel/breeze
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: package-back
- dependency-name: laravel/sail
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: package-back
...

Signed-off-by: dependabot[bot] <[email protected]>

* fix phpstan error

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Jean-Philippe THEVENOUX <[email protected]>
  • Loading branch information
dependabot[bot] and sylfel authored Nov 19, 2024
1 parent a45c308 commit 0747089
Show file tree
Hide file tree
Showing 8 changed files with 234 additions and 241 deletions.
1 change: 1 addition & 0 deletions app/Livewire/Dashboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -291,6 +291,7 @@ public function render()
$this->addCommonCondition($query);
}], 'price')
->orderBy('label')
// @phpstan-ignore argument.type
->with(['postes' => function (HasMany $query) {
$query->withSum(['notes' => function (Builder $query) {
$this->addCommonCondition($query);
Expand Down
2 changes: 1 addition & 1 deletion app/Models/Category.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ class Category extends Model
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
* @var list<string>
*/
protected $fillable = ['label', 'credit', 'extra', 'recurrent', 'icon'];

Expand Down
2 changes: 1 addition & 1 deletion app/Models/Note.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class Note extends Model
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
* @var list<string>
*/
protected $fillable = ['label', 'price', 'year', 'month', 'category_id', 'poste_id', 'user_id'];

Expand Down
2 changes: 1 addition & 1 deletion app/Models/Poste.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Poste extends Model
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
* @var list<string>
*/
protected $fillable = ['label', 'category_id'];

Expand Down
4 changes: 2 additions & 2 deletions app/Models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class User extends Authenticatable
/**
* The attributes that are mass assignable.
*
* @var array<int, string>
* @var list<string>
*/
protected $fillable = [
'name',
Expand All @@ -26,7 +26,7 @@ class User extends Authenticatable
/**
* The attributes that should be hidden for serialization.
*
* @var array<int, string>
* @var list<string>
*/
protected $hidden = [
'password',
Expand Down
5 changes: 4 additions & 1 deletion app/View/Components/Chart.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,9 @@ public function __construct()
*/
public function render(): View|Closure|string
{
return view('components.chart');
/** @var view-string $viewName */
$viewName = 'components.chart';

return view($viewName);
}
}
14 changes: 7 additions & 7 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,24 +11,24 @@
"php": "^8.2",
"filament/actions": "v3.2.113",
"filament/notifications": "v3.2.113",
"filament/spatie-laravel-tags-plugin": "v3.2.123",
"filament/spatie-laravel-tags-plugin": "v3.2.124",
"filament/tables": "v3.2.113",
"guava/filament-icon-picker": "^2.2.4",
"guzzlehttp/guzzle": "^7.9.2",
"laravel/framework": "v11.31.0",
"laravel/framework": "v11.32.0",
"laravel/sanctum": "v4.0.3",
"laravel/tinker": "v2.10.0",
"livewire/livewire": "v3.5.12",
"livewire/volt": "v1.6.5",
"livewire/volt": "v1.6.6",
"owenvoke/blade-fontawesome": "v2.7.0"
},
"require-dev": {
"barryvdh/laravel-debugbar": "v3.14.6",
"barryvdh/laravel-debugbar": "v3.14.7",
"fakerphp/faker": "v1.24.0",
"larastan/larastan": "v2.9.10",
"laravel/breeze": "v2.2.4",
"larastan/larastan": "v3.0.0",
"laravel/breeze": "v2.2.5",
"laravel/pint": "v1.18.1",
"laravel/sail": "v1.37.1",
"laravel/sail": "v1.38.0",
"mockery/mockery": "^1.6.12",
"nunomaduro/collision": "v8.5.0",
"pestphp/pest": "v3.5.1",
Expand Down
Loading

0 comments on commit 0747089

Please sign in to comment.