Skip to content

Commit f00a1f1

Browse files
committed
Merge branch 'release/1.x' of github.com:backstagephp/fields into feature/conditional-fields
2 parents 399c6b4 + 3b1f693 commit f00a1f1

27 files changed

+5589
-157
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ jobs:
2222
uses: aglipanci/[email protected]
2323

2424
- name: Commit changes
25-
uses: stefanzweifel/git-auto-commit-action@v5
25+
uses: stefanzweifel/git-auto-commit-action@v6
2626
with:
2727
commit_message: Fix styling

.github/workflows/run-tests.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,9 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest, windows-latest]
1616
php: [8.3, 8.2]
17-
laravel: [10.*, 11.*]
17+
laravel: [11.*]
1818
stability: [prefer-lowest, prefer-stable]
1919
include:
20-
- laravel: 10.*
21-
testbench: 8.*
22-
carbon: ^2.67
2320
- laravel: 11.*
2421
testbench: 9.*
2522
carbon: ^2.72.2

.github/workflows/update-changelog.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
release-notes: ${{ github.event.release.body }}
2525

2626
- name: Commit updated CHANGELOG
27-
uses: stefanzweifel/git-auto-commit-action@v5
27+
uses: stefanzweifel/git-auto-commit-action@v6
2828
with:
2929
branch: main
3030
commit_message: Update CHANGELOG

CHANGELOG.md

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

33
All notable changes to `fields` will be documented in this file.
44

5+
## v0.6.0 - 2025-06-25
6+
7+
### What's Changed
8+
9+
* feat: hide trix related caption fields by @Baspa in https://github.com/backstagephp/fields/pull/11
10+
11+
**Full Changelog**: https://github.com/backstagephp/fields/compare/v0.5.0...v0.6.0
12+
513
## v0.5.0 - 2025-06-23
614

715
### What's Changed

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"laravel/pint": "^1.14",
3232
"nunomaduro/collision": "^8.1.1||^7.10.0",
3333
"nunomaduro/larastan": "^3.0",
34-
"orchestra/testbench": "^9.0.0||^8.22.0",
34+
"orchestra/testbench": "^9.0.0",
3535
"pestphp/pest": "^2.34",
3636
"pestphp/pest-plugin-arch": "^2.0",
3737
"pestphp/pest-plugin-laravel": "^2.0",
@@ -77,7 +77,7 @@
7777
"repositories": {
7878
"saade/filament-adjacency-list": {
7979
"type": "git",
80-
"url": "git@github.com:backstagephp/filament-adjacency-list.git"
80+
"url": "https://github.com/backstagephp/filament-adjacency-list.git"
8181
}
8282
},
8383
"minimum-stability": "beta",

database/factories/FieldFactory.php

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,6 @@ class FieldFactory extends Factory
99
{
1010
protected $model = Field::class;
1111

12-
/**
13-
* Define the model's default state.
14-
*
15-
* @return array<string, mixed>
16-
*/
1712
public function definition(): array
1813
{
1914
return [

0 commit comments

Comments
 (0)