Skip to content

Commit b790b6b

Browse files
authored
hotfix: Revert changes made in v2.6.0
1 parent f347bc0 commit b790b6b

File tree

7 files changed

+10
-38
lines changed

7 files changed

+10
-38
lines changed

.github/workflows/fix-php-code-style-issues.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
steps:
1010
- name: Checkout code
11-
uses: actions/checkout@v5
11+
uses: actions/checkout@v4
1212
with:
1313
ref: ${{ github.head_ref }}
1414

.github/workflows/phpstan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
name: phpstan
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v5
14+
- uses: actions/checkout@v4
1515

1616
- name: Setup PHP
1717
uses: shivammathur/setup-php@v2

.github/workflows/run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,10 +38,10 @@ jobs:
3838

3939
steps:
4040
- name: Checkout code
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v4
4242

4343
- name: Cache dependencies
44-
uses: actions/cache@v4
44+
uses: actions/cache@v3
4545
with:
4646
path: ~/.composer/cache/files
4747
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}

.github/workflows/update-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010

1111
steps:
1212
- name: Checkout code
13-
uses: actions/checkout@v5
13+
uses: actions/checkout@v4
1414

1515
- name: Update Changelog
1616
uses: stefanzweifel/changelog-updater-action@v1

CHANGELOG.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,6 @@
22

33
All notable changes to `filament-fabricator` will be documented in this file.
44

5-
## v2.6.0 (Filament v4 Support) - 2025-08-23
6-
7-
### What's Changed
8-
9-
* build(deps): bump actions/cache from 3 to 4 by @dependabot[bot] in https://github.com/Z3d0X/filament-fabricator/pull/232
10-
* Add compatibility with Filament v4 by @Voltra in https://github.com/Z3d0X/filament-fabricator/pull/235
11-
* build(deps): bump actions/checkout from 4 to 5 by @dependabot[bot] in https://github.com/Z3d0X/filament-fabricator/pull/234
12-
13-
**Full Changelog**: https://github.com/Z3d0X/filament-fabricator/compare/v2.5.1...v2.6.0
14-
155
## v2.5.1 - 2025-08-03
166

177
### What's Changed

README.md

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
|------|----------|--------|
1515
| [1.x](https://github.com/z3d0x/filament-fabricator/tree/1.x) | ^2.0 | ^8.0 |
1616
| [2.x](https://github.com/z3d0x/filament-fabricator/tree/2.x) | ^3.0 | ^8.1 |
17-
| [^2.6](https://github.com/z3d0x/filament-fabricator/tree/2.x) | ^4.0 | ^8.2 |
1817

1918
## Installation
2019

@@ -53,22 +52,6 @@ Then, publish the registered plugin assets:
5352
php artisan filament:assets
5453
```
5554

56-
## Migration
57-
58-
### Filament v3 to Filament v4
59-
60-
Since v2.6.0, this package is compatible with both Filament v3 and Filament v4.
61-
62-
To migrate your project that uses this package from Filament v3 to Filament v4, please follow the [Filament upgrade guide](https://filamentphp.com/docs/4.x/upgrade-guide).
63-
64-
Should you encounter an error related to this package during that process, you can also try the following command:
65-
```bash
66-
composer require filament/filament:"^4.0" -W --no-update
67-
composer require z3d0x/filament-fabricator:"^2.6" -W --no-update
68-
composer update
69-
```
70-
71-
7255
## Documentation
7356

7457
Documentation can be viewed at: https://filamentphp.com/plugins/z3d0x-fabricator

composer.json

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,14 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.1 | ^8.2",
20-
"filament/filament": "^3.0 | ^4.0",
21-
"filament/support": "^3.0 | ^4.0",
19+
"php": "^8.1",
20+
"filament/filament": "^3.0",
2221
"illuminate/contracts": "^9.0 | ^10.0 | ^11.0 | ^12.0",
23-
"pboivin/filament-peek": "^2.0 | ^3.0 | ^3.0.0-beta1 | ^3.x-dev",
22+
"pboivin/filament-peek": "^2.0",
2423
"spatie/laravel-package-tools": "^1.13.5"
2524
},
2625
"require-dev": {
27-
"larastan/larastan": "^2.9 | ^3.0",
26+
"larastan/larastan": "^2.9",
2827
"laravel/pint": "^1.0",
2928
"nunomaduro/collision": "^7.0 | ^8.0",
3029
"orchestra/testbench": "^8.0 | ^9.0 | ^10.0",
@@ -74,4 +73,4 @@
7473
},
7574
"minimum-stability": "dev",
7675
"prefer-stable": true
77-
}
76+
}

0 commit comments

Comments
 (0)